lib/SPVM/Global.pm:      $env->destroy_class_vars($stack);
lib/SPVM/Global.pm:    my $builder_stack = $builder_env->new_stack;
lib/SPVM/Global.pm:      $builder_env->set_command_info_program_name($builder_stack, $0);
lib/SPVM/Global.pm:      $builder_env->set_command_info_argv($builder_stack, \@ARGV);
lib/SPVM/Global.pm:      $builder_env->set_command_info_base_time($builder_stack, $base_time);
lib/SPVM/Global.pm:    my $stack = $env->new_stack;
lib/SPVM/Global.pm:  my $compiler = $env->runtime->get_compiler;
lib/SPVM/Hash.c:  const char* buf = env->get_chars(env, stack, object);
lib/SPVM/Hash.c:  uint32_t len = env->length(env, stack, object);
lib/SPVM/Hash.c:  char* seed = (char*)env->get_chars(env, stack, obj_seed);
lib/SPVM/Hash.c:  int32_t seed_length = env->length(env, stack, obj_seed);
lib/SPVM/Hash.c:  const char* buf = env->get_chars(env, stack, object);
lib/SPVM/Hash.c:  uint32_t len = env->length(env, stack, object);
lib/SPVM/Hash.c:  const char* seed = env->get_chars(env, stack, obj_seed);
lib/SPVM/Builder/Exe.pm:void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
lib/SPVM/Builder/Exe.pm:void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
lib/SPVM/Builder/Exe.pm:env->api->method->set_precompile_address(env->runtime, method, precompile_address);
lib/SPVM/Builder/Exe.pm:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
lib/SPVM/Builder/Exe.pm:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
lib/SPVM/Builder/Exe.pm:  env->api->method->set_native_address(env->runtime, method, native_address);
lib/SPVM/Builder/Exe.pm:  env->runtime = runtime;
lib/SPVM/Builder/Exe.pm:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
lib/SPVM/Builder/Exe.pm:  SPVM_VALUE* stack = env->new_stack(env);
lib/SPVM/Builder/Exe.pm:    int32_t mortal_stack_top = env->enter_scope(env, stack);
lib/SPVM/Builder/Exe.pm:    void* obj_program_name = env->new_string(env, stack, command_args[0], strlen(command_args[0]));
lib/SPVM/Builder/Exe.pm:    void* obj_argv = env->new_string_array(env, stack, command_args_length - 1);
lib/SPVM/Builder/Exe.pm:      void* obj_arg = env->new_string(env, stack, command_args[arg_index], strlen(command_args[arg_index]));
lib/SPVM/Builder/Exe.pm:      env->set_elem_object(env, stack, obj_argv, arg_index - 1, obj_arg);
lib/SPVM/Builder/Exe.pm:      error_id = env->set_command_info_program_name(env, stack, obj_program_name);
lib/SPVM/Builder/Exe.pm:        env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
lib/SPVM/Builder/Exe.pm:        error_id = env->set_command_info_argv(env, stack, obj_argv);
lib/SPVM/Builder/Exe.pm:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
lib/SPVM/Builder/Exe.pm:          error_id = env->set_command_info_base_time(env, stack, base_time);
lib/SPVM/Builder/Exe.pm:            env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
lib/SPVM/Builder/Exe.pm:    env->leave_scope(env, stack, mortal_stack_top);
lib/SPVM/Builder/Exe.pm:    error_id = env->check_bootstrap_method(env, stack, class_name);
lib/SPVM/Builder/Exe.pm:      env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
lib/SPVM/Builder/Exe.pm:      error_id = env->call_init_methods(env, stack);
lib/SPVM/Builder/Exe.pm:        void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
lib/SPVM/Builder/Exe.pm:        void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
lib/SPVM/Builder/Exe.pm:        error_id = env->call_method(env, stack, method, args_width);
lib/SPVM/Builder/Exe.pm:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
lib/SPVM/Builder/Exe.pm:    env->print_stderr(env, stack, env->get_exception(env, stack));
lib/SPVM/Builder/Exe.pm:  env->destroy_class_vars(env, stack);
lib/SPVM/Builder/Exe.pm:  env->free_stack(env, stack);
lib/SPVM/Builder/Exe.pm:  env->free_env(env);
lib/SPVM/Builder/Exe.pm:    $source_class_file .= qq|    env->api->compiler->add_class_file(compiler, "$class_name");\n|;
lib/SPVM/Builder/Exe.pm:    $source_class_file .= qq|    void* class_file = env->api->compiler->get_class_file(compiler, "$class_name");\n|;
lib/SPVM/Builder/Exe.pm:      $source_class_file .= qq|    env->api->class_file->set_rel_file(compiler, class_file, "$class_file_rel_file");\n|;
lib/SPVM/Builder/Exe.pm:      $source_class_file .= qq|    env->api->class_file->set_content(compiler, class_file, "$content_espcaped");\n|;
lib/SPVM/Builder/Exe.pm:    $source_class_file .= qq|    env->api->class_file->set_content_length(compiler, class_file, $class_file_content_length);\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|  env->api->compiler->set_start_file(compiler, __FILE__);\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|  env->api->compiler->set_start_line(compiler, __LINE__ + 1);\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|  int32_t error_id = env->api->compiler->compile(compiler, \"$start_class_name\");\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|  void* runtime = env->api->compiler->get_runtime(compiler);\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(runtime);\n|;
lib/SPVM/Builder/Exe.pm:  $source .= qq|    fprintf(spvm_stderr, "[Unexpected Compile Error]%s.", env->api->compiler->get_error_message(compiler, 0));\n|;
lib/SPVM/Builder/src/spvm_vm.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_vm.c:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_CALL_STACK_ALLOCATION_FAILED]);
lib/SPVM/Builder/src/spvm_vm.c:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/src/spvm_vm.c:  int32_t object_data_offset = env->api->runtime->get_object_data_offset(env->runtime);
lib/SPVM/Builder/src/spvm_vm.c:  int32_t object_ref_count_offset = env->api->runtime->get_object_ref_count_offset(env->runtime);
lib/SPVM/Builder/src/spvm_vm.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
lib/SPVM/Builder/src/spvm_vm.c:          env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line));
lib/SPVM/Builder/src/spvm_vm.c:          env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line));
lib/SPVM/Builder/src/spvm_vm.c:        void* dist_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, dist_basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_index(env->runtime, field_current_basic_type, field_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_index(env->runtime, class_var_current_basic_type, class_var_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        void* src_basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, src_basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_METHOD* method = SPVM_API_BASIC_TYPE_get_method_by_index(env->runtime, invocant_decl_basic_type, decl_method_index);
lib/SPVM/Builder/src/spvm_vm.c:        SPVM_RUNTIME_METHOD* method = SPVM_API_BASIC_TYPE_get_method_by_index(env->runtime, invocant_decl_basic_type, decl_method_index);
lib/SPVM/Builder/src/spvm_vm.c:          env->api->internal->dec_ref_count(env, stack, *(void**)&stack[0]);
Binary file lib/SPVM/Builder/src/spvm_precompile.o matches
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_ALLOCATOR_free_api(env->api->allocator);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_STRING_BUFFER_free_api(env->api->string_buffer);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_COMPILER_free_api(env->api->compiler);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_RUNTIME_free_api(env->api->runtime);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_CLASS_FILE_free_api(env->api->class_file);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_BASIC_TYPE_free_api(env->api->basic_type);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_CLASS_VAR_free_api(env->api->class_var);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_FIELD_free_api(env->api->field);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_TYPE_free_api(env->api->type);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_METHOD_free_api(env->api->method);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_ARG_free_api(env->api->arg);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_API_INTERNAL_free_api(env->api->internal);
lib/SPVM/Builder/src/spvm_api.c:  free(env->api);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:    SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_api.c:      SPVM_RUNTIME_METHOD* init_method = SPVM_API_BASIC_TYPE_get_method_by_index(env->runtime, basic_type, basic_type->init_method->index);      
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:    SPVM_RUNTIME_BASIC_TYPE* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_METHOD* method = SPVM_API_BASIC_TYPE_get_method_by_name(env->runtime, basic_type, method_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_METHOD* method = SPVM_API_BASIC_TYPE_get_method_by_name(env->runtime, basic_type, method_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  int8_t value = *(int8_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  int16_t value = *(int16_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  int32_t value = *(int32_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  int64_t value = *(int64_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  float value = *(float*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  double value = *(double*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_OBJECT* value_maybe_weaken = *(SPVM_OBJECT**)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_OBJECT** object_ref = (SPVM_OBJECT**)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  *(int8_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  *(int16_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  *(int32_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  *(int64_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  *(float*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  *(double*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset) = value;
lib/SPVM/Builder/src/spvm_api.c:  void* object_ref = (void**)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:  void* obj_field = env->get_field_object_by_name(env, stack, object, field_name, error_id, func_name, file_name, line);
lib/SPVM/Builder/src/spvm_api.c:    *error_id = env->die(env, stack, "The \"%s\" field must be defined.", field_name, func_name, file_name, line);
lib/SPVM/Builder/src/spvm_api.c:  void* field = env->get_pointer(env, stack, obj_field);
lib/SPVM/Builder/src/spvm_api.c:    *error_id = env->die(env, stack, "The pointer of the \"%s\" field must be defined.", field_name, func_name, file_name, line);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_VALUE* stack = env->new_memory_block(env, NULL, sizeof(SPVM_VALUE) * 512);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  env->free_memory_block(env, stack, stack);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:      is_object_array = SPVM_API_TYPE_is_object_type(env->runtime, object_basic_type, element_type_dimension, type_flag);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  FILE* spvm_stderr = SPVM_API_RUNTIME_get_spvm_stderr(env->runtime);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:                int8_t* element = &((int8_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:                int16_t* element = &((int16_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:                int32_t* element = &((int32_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:                int64_t* element = &((int64_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:                float* element = &((float*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:                double* element = &((double*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index * fields_length];
lib/SPVM/Builder/src/spvm_api.c:              int8_t element = ((int8_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:              int16_t element = ((int16_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:              int32_t element = ((int32_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:              int64_t element = ((int64_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:              float element = ((float*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:              double element = ((double*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index];
lib/SPVM/Builder/src/spvm_api.c:          SPVM_OBJECT* element = (((SPVM_OBJECT**)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[array_index]);
lib/SPVM/Builder/src/spvm_api.c:                int8_t field_value = *(int8_t*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:                int16_t field_value = *(int16_t*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:                int32_t field_value = *(int32_t*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:                int64_t field_value = *(int64_t*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:                float field_value = *(float*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:                double field_value = *(double*)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:            SPVM_OBJECT* field_value = *(SPVM_OBJECT**)((intptr_t)object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field_offset);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_BASIC_TYPE* string_basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + basic_type->fields_size + 1;
lib/SPVM/Builder/src/spvm_api.c:      memcpy((void*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)), (char*)bytes, length);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(char) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:      memcpy((void*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)), (char*)bytes, length);
lib/SPVM/Builder/src/spvm_api.c:  int32_t value = *(int32_t*)((intptr_t)bool_object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(int8_t) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(int16_t) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(int32_t) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(int64_t) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(float) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(double) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(void*) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(void*) * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + unit_size * fields_length * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + element_size * (length + 1);
lib/SPVM/Builder/src/spvm_api.c:  return (int8_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (const char*)((intptr_t)string + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (int16_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (int32_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (int64_t*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (float*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  return (double*)((intptr_t)object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime));
lib/SPVM/Builder/src/spvm_api.c:  SPVM_OBJECT* object_maybe_weaken = ((SPVM_OBJECT**)((intptr_t)array + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[index];
lib/SPVM/Builder/src/spvm_api.c:  void* object_ref = &((void**)((intptr_t)array + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[index];
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_FIELD* field = SPVM_API_BASIC_TYPE_get_field_by_name(env->runtime, basic_type, field_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_CLASS_VAR* class_var = SPVM_API_BASIC_TYPE_get_class_var_by_name(env->runtime, basic_type, class_var_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME_METHOD* method = SPVM_API_BASIC_TYPE_get_method_by_name(env->runtime, basic_type, method_name);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:      isa = SPVM_API_TYPE_can_assign(env->runtime, basic_type, type_dimension, 0, object_basic_type, object_type_dimension, 0);
lib/SPVM/Builder/src/spvm_api.c:  void* basic_type = SPVM_API_RUNTIME_get_basic_type_by_id(env->runtime, basic_type_id);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:        int32_t arg_is_object_type = SPVM_API_TYPE_is_object_type(env->runtime, arg->basic_type, arg->type_dimension, arg->type_flag);
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:          SPVM_OBJECT** ref = &(((SPVM_OBJECT**)((intptr_t)released_object + SPVM_API_RUNTIME_get_object_data_offset(env->runtime)))[index]);
lib/SPVM/Builder/src/spvm_api.c:          SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:            SPVM_RUNTIME_METHOD* destructor_method = SPVM_API_BASIC_TYPE_get_method_by_index(env->runtime, released_object_basic_type, released_object_basic_type->destructor_method->index);
lib/SPVM/Builder/src/spvm_api.c:              SPVM_OBJECT** ref = (SPVM_OBJECT**)((intptr_t)released_object + (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + field->offset);
lib/SPVM/Builder/src/spvm_api.c:    SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:    SPVM_RUNTIME* runtime = env->runtime;
lib/SPVM/Builder/src/spvm_api.c:  FILE* spvm_stdin = env->api->runtime->get_spvm_stdin(env->runtime);
lib/SPVM/Builder/src/spvm_api.c:  FILE* spvm_stdout = env->api->runtime->get_spvm_stdout(env->runtime);
lib/SPVM/Builder/src/spvm_api.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
lib/SPVM/Builder/src/spvm_api.c:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, basic_type_name);
lib/SPVM/Builder/src/spvm_api.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
lib/SPVM/Builder/src/spvm_api.c:    int32_t is_class_method = env->api->method->is_class_method(env->runtime, method);
lib/SPVM/Builder/src/spvm_api.c:      int32_t args_length = env->api->method->get_args_length(env->runtime, method);
lib/SPVM/Builder/src/spvm_api.c:        error_id = env->die(env, stack, "The length of the arguments of the \"main\" method in the \"%s\" class must be 0.", basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Builder/src/spvm_api.c:        void* return_basic_type = env->api->method->get_return_basic_type(env->runtime, method);
lib/SPVM/Builder/src/spvm_api.c:        const char* return_basic_type_name = env->api->basic_type->get_name(env->runtime, return_basic_type);
lib/SPVM/Builder/src/spvm_api.c:          error_id = env->die(env, stack, "The return type of the \"main\" method in the \"%s\" class must be the void type.", basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Builder/src/spvm_api.c:      error_id = env->die(env, stack, "The \"main\" method in the \"%s\" class must be a class method.", basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Builder/src/spvm_api.c:    error_id = env->die(env, stack, "The \"main\" method in the \"%s\" class must be defined.", basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Builder/src/spvm_api.c:  size_t alloc_size = (size_t)SPVM_API_RUNTIME_get_object_data_offset(env->runtime) + sizeof(void*) * (length + 1);
lib/SPVM/Builder/src/spvm_precompile.c:  SPVM_STRING_BUFFER_add(string_buffer,"  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);\n");
lib/SPVM/Builder/src/spvm_precompile.c:  SPVM_STRING_BUFFER_add(string_buffer,"  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);\n");
lib/SPVM/Builder/src/spvm_precompile.c:  SPVM_STRING_BUFFER_add(string_buffer, "  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);\n");
lib/SPVM/Builder/src/spvm_precompile.c:  SPVM_STRING_BUFFER_add(string_buffer, "  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);\n");
lib/SPVM/Builder/src/spvm_precompile.c:                                              "    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = ");
lib/SPVM/Builder/src/spvm_precompile.c:                                              "    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = ");
lib/SPVM/Builder/src/spvm_precompile.c:        SPVM_STRING_BUFFER_add(string_buffer, "  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);");
lib/SPVM/Builder/src/spvm_precompile.c:        SPVM_STRING_BUFFER_add(string_buffer, "  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);\n");
lib/SPVM/Builder/src/spvm_precompile.c:        SPVM_STRING_BUFFER_add(string_buffer, "  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);");
lib/SPVM/Builder/src/spvm_precompile.c:                                          "    env->api->internal->dec_ref_count(env, stack, stack[0].oval);\n"
lib/SPVM/Builder/include/spvm_precompile.h:      env->dec_ref_count(env, stack, (*(void**)((intptr_t)SPVM_PRECOMPILE_RUNTIME + SPVM_PRECOMPILE_RUNTIME_EXCEPTION_OFFSET))); \
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, basic_type_name);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, message);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  void* field = env->get_field_static(env, stack, basic_type_name, field_name);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, message);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  void* field = env->get_field_static(env, stack, basic_type_name, field_name);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, message);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t field_offset = env->api->field->get_offset(env->runtime, field);
lib/SPVM/Builder/include/spvm_implement.h:  void* class_var = env->get_class_var(env, stack, basic_type_name, class_var_name);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, message);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  void* method = env->get_method(env, stack, basic_type_name, method_name);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, message);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, dist_address, NULL);
lib/SPVM/Builder/include/spvm_implement.h:  env->api->internal->leave_scope_local(env, stack, object_vars, mortal_stack, mortal_stack_top_ptr, original_mortal_stack_top);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_DIVIDE_ZERO]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_MOVE_OBJECT(env, stack, out, in) (env->assign_object(env, stack, out, in))
lib/SPVM/Builder/include/spvm_implement.h:  int32_t isa = env->isa(env, stack, object, dist_basic_type, dist_type_dimension);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, in);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_VALUE_ASSIGN_NON_ASSIGNABLE_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  if (env->is_read_only(env, stack, string)) {
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ASSIGN_READ_ONLY_STRING_TO_MUTABLE_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_CONCAT_LEFT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_CONCAT_RIGHT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* string3 = env->concat_no_mortal(env, stack, string1, string2);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, string3);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_BOOL_CONVERSION_BOOL_OBJECT(env, stack, out, in) (out = !!env->get_bool_object_value(env, stack, in))
lib/SPVM/Builder/include/spvm_implement.h:    const char* bytes1 = env->get_chars(env, stack, object1);
lib/SPVM/Builder/include/spvm_implement.h:    const char* bytes2 = env->get_chars(env, stack, object2);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_OBJECT_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_object_array_no_mortal(env, stack, basic_type, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_muldim_array_no_mortal(env, stack, basic_type, type_dimension, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_mulnum_array_no_mortal(env, stack, basic_type, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_byte_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_short_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_int_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_long_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_float_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* object = env->new_double_array_no_mortal(env, stack, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_ARRAY_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRRAY_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, constant_string, constant_string_length);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_STRING_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->make_read_only(env, stack, string);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out , string);
lib/SPVM/Builder/include/spvm_implement.h:    void* string = env->new_string_no_mortal(env, stack, NULL, length);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_NEW_STRING_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_STRING_LENGTH_SMALL]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_IS_READ_ONLY(env, stack, out, in) (out = env->is_read_only(env, stack, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_MAKE_READ_ONLY(env, stack, in) (env->make_read_only(env, stack, in))
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]));
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]));
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, ((void**)((intptr_t)array + object_data_offset))[index]);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, element_address, in);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      int32_t elem_isa = env->elem_isa(env, stack, array, object);
lib/SPVM/Builder/include/spvm_implement.h:        env->assign_object(env, stack, element_address, object);
lib/SPVM/Builder/include/spvm_implement.h:        void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ELEMENT_ASSIGN_NON_ASSIGNABLE_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:        env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, object_address, NULL);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, ref, in);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, ref, NULL);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    int32_t status = env->weaken(env, stack, ref);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_WEAKEN_BACK_REFERENCE_ALLOCATION_FAILED]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    env->unweaken(env, stack, ref);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_FIELD_ACCESS_INVOCANT_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    *out = env->isweak(env, stack, ref);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_BYTE(env, stack, out, class_var) (out = env->get_class_var_byte(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_SHORT(env, stack, out, class_var) (out = env->get_class_var_short(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_INT(env, stack, out, class_var) (out = env->get_class_var_int(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_LONG(env, stack, out, class_var) (out = env->get_class_var_long(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_FLOAT(env, stack, out, class_var) (out = env->get_class_var_float(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_DOUBLE(env, stack, out, class_var) (out = env->get_class_var_double(env, stack, class_var))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_CLASS_VAR_OBJECT(env, stack, out, class_var) (env->assign_object(env, stack, out, env->get_class_var_object(env, stack, class_var)))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_BYTE(env, stack, class_var, in) (env->set_class_var_byte(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_SHORT(env, stack, class_var, in) (env->set_class_var_short(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_INT(env, stack, class_var, in) (env->set_class_var_int(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_LONG(env, stack, class_var, in) (env->set_class_var_long(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_FLOAT(env, stack, class_var, in) (env->set_class_var_float(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_DOUBLE(env, stack, class_var, in) (env->set_class_var_double(env, stack, class_var, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_OBJECT(env, stack, class_var, in) (env->assign_object(env, stack, env->get_class_var_object_ref(env, stack, class_var), in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_CLASS_VAR_UNDEF(env, stack, class_var) (env->assign_object(env, stack, env->get_class_var_object_ref(env, stack, class_var), NULL))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_EXCEPTION_VAR(env, stack, out) (env->assign_object(env, stack, out, env->get_exception(env, stack)))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_EXCEPTION_VAR(env, stack, in) (env->set_exception(env, stack, in))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_SET_EXCEPTION_VAR_UNDEF(env, stack) (env->set_exception(env, stack, NULL))
lib/SPVM/Builder/include/spvm_implement.h:    *out = env->isa(env, stack, object, dist_basic_type, dist_type_dimension);
lib/SPVM/Builder/include/spvm_implement.h:  *out = env->api->type->can_assign(env->runtime, dist_basic_type, dist_type_dimension, 0, src_basic_type, 0, 0);
lib/SPVM/Builder/include/spvm_implement.h:    *out = env->is_type(env, stack, object, dist_basic_type, dist_type_dimension);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_CAN(env, stack, out, object, method_name) (out = (env->get_instance_method(env, stack, object, method_name) != NULL))
lib/SPVM/Builder/include/spvm_implement.h:  env->print(env, stack, string);
lib/SPVM/Builder/include/spvm_implement.h:  env->say(env, stack, string);
lib/SPVM/Builder/include/spvm_implement.h:  env->warn(env, stack, string, NULL, NULL, file, line);
lib/SPVM/Builder/include/spvm_implement.h:  env->warn(env, stack, string, basic_type_name, method_name, file, line);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_ARGS_WIDTH(env, stack, out) (out = env->args_width(env, stack))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_GET_BASIC_TYPE_ID(env, stack, out, basic_type) (out = env->api->basic_type->get_id(env->runtime, basic_type))
lib/SPVM/Builder/include/spvm_implement.h:    void* type_name = env->get_type_name_no_mortal(env, stack, object);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, type_name);
lib/SPVM/Builder/include/spvm_implement.h:  void* dump = env->dump_no_mortal(env, stack, object);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, dump);
lib/SPVM/Builder/include/spvm_implement.h:    if (!(env->is_string(env, stack, object) || env->is_numeric_array(env, stack, object) || env->is_mulnum_array(env, stack, object))) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_COPY_OPERAND_INVALID]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* new_object_no_mortal = env->copy_no_mortal(env, stack, object);
lib/SPVM/Builder/include/spvm_implement.h:      env->assign_object(env, stack, out, new_object_no_mortal);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, NULL);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_UNDEFINED]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_ARRAY_ACCESS_INDEX_OUT_OF_RANGE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, tmp_buffer, string_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* string = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    int32_t src_string_length = env->length(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    const char* src_string_data = env->get_chars(env, stack, src_string);
lib/SPVM/Builder/include/spvm_implement.h:    void* byte_array = env->new_byte_array_no_mortal(env, stack, src_string_length);
lib/SPVM/Builder/include/spvm_implement.h:    int8_t* byte_array_data = env->get_elems_byte(env, stack, byte_array);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, byte_array);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, NULL);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t src_byte_array_length = env->length(env, stack, src_byte_array);
lib/SPVM/Builder/include/spvm_implement.h:  int8_t* src_byte_array_data = env->get_elems_byte(env, stack, src_byte_array);
lib/SPVM/Builder/include/spvm_implement.h:  void* string = env->new_string_no_mortal(env, stack, (const char*)src_byte_array_data, src_byte_array_length);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, string);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_BYTE_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_SHORT_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_INT_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_LONG_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_FLOAT_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:  void* basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, SPVM_NATIVE_C_BASIC_TYPE_ID_DOUBLE_CLASS);
lib/SPVM/Builder/include/spvm_implement.h:  void* object = env->new_object_no_mortal(env, stack, basic_type);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, object);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Byte", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Short", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Int", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Long", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Float", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_FROM_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    if (env->is_type_by_name(env, stack, object, "Double", 0)) {
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_UNBOXING_CONVERSION_NON_CORRESPONDING_NUMERIC_OBJECT_TYPE]);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:  env->assign_object(env, stack, out, *(void**)&stack[stack_index]);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, NULL);
lib/SPVM/Builder/include/spvm_implement.h:    env->assign_object(env, stack, out, *(void**)&stack[stack_index]);
lib/SPVM/Builder/include/spvm_implement.h:    env->api->internal->inc_ref_count(env, stack, in);
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_CALL_CLASS_METHOD(env, stack, error_id, method, args_width) (error_id = env->call_method_no_mortal(env, stack, method, args_width))
lib/SPVM/Builder/include/spvm_implement.h:#define SPVM_IMPLEMENT_CALL_INSTANCE_METHOD_STATIC(env, stack, error_id, method, args_width) (error_id = env->call_method_no_mortal(env, stack, method, args_width))
lib/SPVM/Builder/include/spvm_implement.h:    void* exception = env->new_string_nolen_no_mortal(env, stack, SPVM_IMPLEMENT_STRING_LITERALS[SPVM_IMPLEMENT_C_STRING_CALL_INSTANCE_METHOD_INVOCANT_UNDEF]);
lib/SPVM/Builder/include/spvm_implement.h:    env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    method = env->get_instance_method(env, stack, object, method_name);
lib/SPVM/Builder/include/spvm_implement.h:      void* exception = env->new_string_nolen_no_mortal(env, stack, tmp_buffer);
lib/SPVM/Builder/include/spvm_implement.h:      env->set_exception(env, stack, exception);
lib/SPVM/Builder/include/spvm_implement.h:    *error_id = env->call_method_no_mortal(env, stack, method, args_width);
lib/SPVM/Native.c:  void* obj_env = env->new_pointer_object_by_name(env, stack, "Native::Env", env, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  void* obj_runtime = env->new_pointer_object_by_name(env, stack, "Native::Runtime", env->runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  env->set_field_object_by_name(env, stack, obj_env, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  void* obj_compiler = env->new_pointer_object_by_name(env, stack, "Native::Compiler", env->api->runtime->get_compiler(env->runtime), &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  env->set_field_object_by_name(env, stack, obj_runtime, "compiler", obj_compiler, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  env->set_field_object_by_name(env, stack, obj_compiler, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  void** obj_runtime_ref = env->get_field_object_ref_by_name(env, stack, obj_compiler, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  env->weaken(env, stack, obj_runtime_ref);
lib/SPVM/Native.c:  env->set_field_byte_by_name(env, stack, obj_env, "no_destroy", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  void* obj_stack = env->new_pointer_object_by_name(env, stack, "Native::Stack", stack, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  env->set_field_byte_by_name(env, stack, obj_stack, "no_destroy", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native.c:  error_id = env->check_bootstrap_method(env, stack, basic_type_name);
lib/SPVM/Native.c:    return env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, FILE_NAME, __LINE__);
lib/SPVM/Native.spvm:    my $current_runtime = $current_env->runtime;
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  void* obj_formatted_string = env->new_string(env, stack, NULL, max_length);
lib/SPVM/Format.c:  char* formatted_string = (char*)env->get_chars(env, stack, obj_formatted_string);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  void* obj_formatted_string = env->new_string(env, stack, NULL, max_length);
lib/SPVM/Format.c:  char* formatted_string = (char*)env->get_chars(env, stack, obj_formatted_string);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  void* obj_formatted_string = env->new_string(env, stack, NULL, max_length);
lib/SPVM/Format.c:  char* formatted_string = (char*)env->get_chars(env, stack, obj_formatted_string);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Format.c:  stack[0].oval = env->new_string(env, stack, formatted_string, length);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int8_t* dest = env->get_elems_byte(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int8_t* source = env->get_elems_byte(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  double* dest = env->get_elems_double(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  double* source = env->get_elems_double(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  float* dest = env->get_elems_float(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  float* source = env->get_elems_float(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int32_t* dest = env->get_elems_int(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t* source = env->get_elems_int(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int64_t* dest = env->get_elems_long(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int64_t* source = env->get_elems_long(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int16_t* dest = env->get_elems_short(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int16_t* source = env->get_elems_short(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int8_t* dest = env->get_elems_byte(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int8_t* source = env->get_elems_byte(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  double* dest = env->get_elems_double(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  double* source = env->get_elems_double(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  float* dest = env->get_elems_float(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  float* source = env->get_elems_float(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int32_t* dest = env->get_elems_int(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t* source = env->get_elems_int(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int64_t* dest = env->get_elems_long(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int64_t* source = env->get_elems_long(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  int16_t* dest = env->get_elems_short(env, stack, obj_dest);
lib/SPVM/Array.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Array.c:  int16_t* source = env->get_elems_short(env, stack, obj_source);
lib/SPVM/Array.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Array.c:    return env->die(env, stack, "$dest_offset + $length must be less than or equal to the length of $dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$source_offset + $length must be less than or equal to the length of $source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$prototype array must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  void* new_object_array = env->new_array_proto(env, stack, array, length);
lib/SPVM/Array.c:    return env->die(env, stack, "The prototype element $prototype_element must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:    return env->die(env, stack, "The length $length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Array.c:  void* new_object_array = env->new_array_proto_element(env, stack, element, length);
lib/SPVM/Fn.c:  void* utf8_string = env->new_string(env, stack, (char*)utf8_bytes, utf8_bytes_length);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$offset must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* string = env->get_chars(env, stack, obj_string);
lib/SPVM/Fn.c:  int32_t string_len = env->length(env, stack, obj_string);
lib/SPVM/Fn.c:    return env->die(env, stack, "The value of $offset must be less than the length of $string.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    env->die(env, stack, "An invalid UTF-8 is gotten.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    int32_t error_id_unicode_invalid_utf8 = env->get_basic_type_id_by_name(env, stack, "Error::Unicode::InvalidUTF8", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (env->is_array(env, stack, object)) {
lib/SPVM/Fn.c:  if (env->is_class(env, stack, object)) {
lib/SPVM/Fn.c:  if (env->is_mulnum_array(env, stack, object)) {
lib/SPVM/Fn.c:  if (env->is_numeric_array(env, stack, object)) {
lib/SPVM/Fn.c:  if (env->is_object_array(env, stack, object)) {
lib/SPVM/Fn.c:  if (env->is_pointer_class(env, stack, object)) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (!(env->is_string(env, stack, obj_dest) || env->is_numeric_array(env, stack, obj_dest) || env->is_mulnum_array(env, stack, obj_dest))) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$type of $dest must be $string type, $numeric array type, or $multi numeric array type.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (!(env->is_string(env, stack, obj_source) || env->is_numeric_array(env, stack, obj_source) || env->is_mulnum_array(env, stack, obj_source))) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$type of $source must be $string type, $numeric array type, or $multi numeric array type.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (env->is_read_only(env, stack, obj_dest)) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$dest cannnot be be a read-only string.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  char* dest = (char*)env->get_chars(env, stack, obj_dest);
lib/SPVM/Fn.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Fn.c:  int32_t dest_elem_size = env->get_elem_size(env, stack, obj_dest);
lib/SPVM/Fn.c:    return env->die(env, stack, "$offset of $obj_dest + $length must be less than or equal to the length of $obj_dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* source = env->get_chars(env, stack, obj_source);
lib/SPVM/Fn.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Fn.c:  int32_t source_elem_size = env->get_elem_size(env, stack, obj_source);
lib/SPVM/Fn.c:    return env->die(env, stack, "$offset of $obj_source + $length must be less than or equal to the length of $obj_source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$dest must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (!(env->is_string(env, stack, obj_dest) || env->is_numeric_array(env, stack, obj_dest) || env->is_mulnum_array(env, stack, obj_dest))) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$type of $dest must be $string type, $numeric array type, or $multi numeric array type.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$source must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (!(env->is_string(env, stack, obj_source) || env->is_numeric_array(env, stack, obj_source) || env->is_mulnum_array(env, stack, obj_source))) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$type of $source must be $string type, $numeric array type, or $multi numeric array type.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  if (env->is_read_only(env, stack, obj_dest)) {
lib/SPVM/Fn.c:    return env->die(env, stack, "$dest must not be a read-only string.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  char* dest = (char*)env->get_chars(env, stack, obj_dest);
lib/SPVM/Fn.c:  int32_t dest_length = env->length(env, stack, obj_dest);
lib/SPVM/Fn.c:  int32_t dest_elem_size = env->get_elem_size(env, stack, obj_dest);
lib/SPVM/Fn.c:    return env->die(env, stack, "$offset of $obj_dest + $length must be less than or equal to the length of $obj_dest.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* source = env->get_chars(env, stack, obj_source);
lib/SPVM/Fn.c:  int32_t source_length = env->length(env, stack, obj_source);
lib/SPVM/Fn.c:  int32_t source_elem_size = env->get_elem_size(env, stack, obj_source);
lib/SPVM/Fn.c:    return env->die(env, stack, "$offset of $obj_source + $length must be less than or equal to the length of $obj_source.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$length must be greater than or equal to 0.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  env->shorten(env, stack, string, length);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* string = env->get_chars(env, stack, obj_string);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be the string that can be parsed as a double number.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be a double number in $correct range.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* string = env->get_chars(env, stack, obj_string);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be the string that can be parsed as a float number.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be a float number in $correct range.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$digit must be one of 2, 8, 10, or 16.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* string = env->get_chars(env, stack, obj_string);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be the string that can be parsed as a %d-digit 32-bit integer", digit, __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be a 32-bit integer in $correct range.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$digit must be one of 2, 8, 10, or 16.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* string = env->get_chars(env, stack, obj_string);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be the string that can be parsed as a %d-digit 64-bit integer", digit, __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$string must be a 64-bit integer in $correct range.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Fn.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, basic_type_name);
lib/SPVM/Fn.c:    return env->die(env, stack, "The class specified by $basic_type_name must be loaded.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* version_string = env->get_version_string(env, stack, basic_type);
lib/SPVM/Fn.c:    obj_version_string = env->new_string(env, stack, version_string, strlen(version_string));
lib/SPVM/Fn.c:  double spvm_version_number = env->get_spvm_version_number(env, stack);
lib/SPVM/Fn.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Fn.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, basic_type_name);
lib/SPVM/Fn.c:    return env->die(env, stack, "The class specified by $basic_type_name must be loaded.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  double version_number = env->get_version_number(env, stack, basic_type);
lib/SPVM/Fn.c:  const char* spvm_version = env->get_spvm_version_string(env, stack);
lib/SPVM/Fn.c:  void* obj_spvm_version = env->new_string(env, stack, spvm_version, strlen(spvm_version));
lib/SPVM/Fn.c:  int32_t memory_blocks_count = env->get_memory_blocks_count(env, stack);
lib/SPVM/Fn.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Fn.c:  int32_t basic_type_id = env->get_basic_type_id(env, stack, basic_type_name);
lib/SPVM/Fn.c:    return env->die(env, stack, "The basic type \"%s\" is not found.", basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:    return env->die(env, stack, "The basic type name $basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Fn.c:    return env->die(env, stack, "The type dimension $type_dimension must be grether than or equal to 0 and less than or equal to 255.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Fn.c:  void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->api->mutex->new_instance(env, stack);
lib/SPVM/Sync/Mutex.c:  void* obj_mutex = env->new_pointer_object_by_name(env, stack, "Sync::Mutex", mutex, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->get_pointer(env, stack, obj_mutex);
lib/SPVM/Sync/Mutex.c:  env->api->mutex->free_instance(env, stack, mutex);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->get_pointer(env, stack, obj_mutex);
lib/SPVM/Sync/Mutex.c:  env->api->mutex->lock(env, stack, mutex);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->get_pointer(env, stack, obj_mutex);
lib/SPVM/Sync/Mutex.c:  env->api->mutex->unlock(env, stack, mutex);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->get_pointer(env, stack, obj_mutex);
lib/SPVM/Sync/Mutex.c:  env->api->mutex->reader_lock(env, stack, mutex);
lib/SPVM/Sync/Mutex.c:  void* mutex = env->get_pointer(env, stack, obj_mutex);
lib/SPVM/Sync/Mutex.c:  env->api->mutex->reader_unlock(env, stack, mutex);
lib/SPVM/Native/Stack.c:  int32_t no_destroy = env->get_field_byte_by_name(env, stack, obj_self, "no_destroy", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Stack.c:    void* obj_my_env = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Stack.c:    SPVM_ENV* my_env = env->get_pointer(env, stack, obj_my_env);
lib/SPVM/Native/Stack.c:    void* my_stack= env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Stack.c:    my_env->free_stack(my_env, my_stack);
lib/SPVM/Native/Method.c:  void* obj_runtime = env->get_field_object_by_name(env, stack, object, field_name, error_id, func_name, file_name, line);
lib/SPVM/Native/Method.c:    *error_id = env->die(env, stack, "The %s cannot be got.", field_name, func_name, file_name, line);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:    *error_id = env->die(env, stack, "The pointer to the native %s cannot be got.", field_name, func_name, file_name, line);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t index = env->api->method->get_index(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  const char* name = env->api->method->get_name(runtime, method);
lib/SPVM/Native/Method.c:  void* obj_name = env->new_string_nolen(env, stack, name);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  void* basic_type = env->api->method->get_return_basic_type(runtime, method);
lib/SPVM/Native/Method.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t type_dimension = env->api->method->get_return_type_dimension(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t type_flag = env->api->method->get_return_type_flag(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  void* current_basic_type = env->api->method->get_current_basic_type(runtime, method);
lib/SPVM/Native/Method.c:  void* obj_current_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", current_basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  env->set_field_object_by_name(env, stack, obj_current_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  void* arg = env->api->method->get_arg_by_index(runtime, method, arg_index);
lib/SPVM/Native/Method.c:    return env->die(env, stack, "The argument is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* obj_arg = env->new_pointer_object_by_name(env, stack, "Native::Arg", arg, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  env->set_field_object_by_name(env, stack, obj_arg, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t get_args_length = env->api->method->get_args_length(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t get_required_args_length = env->api->method->get_required_args_length(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_class_method = env->api->method->is_class_method(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_anon = env->api->method->is_anon(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_native = env->api->method->is_native(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_precompile = env->api->method->is_precompile(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_enum = env->api->method->is_enum(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  void* native_address = env->api->method->get_native_address(runtime, method);
lib/SPVM/Native/Method.c:  void* obj_native_address = env->new_pointer_object_by_name(env, stack, "Address", native_address, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* native_address = env->get_pointer(env, stack, obj_native_address);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  env->api->method->set_native_address(runtime, method, native_address);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  void* Precompile_address = env->api->method->get_precompile_address(runtime, method);
lib/SPVM/Native/Method.c:  void* obj_precompile_address = env->new_pointer_object_by_name(env, stack, "Address", Precompile_address, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* precompile_address = env->get_pointer(env, stack, obj_precompile_address);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  env->api->method->set_precompile_address(runtime, method, precompile_address);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  int32_t is_precompile = env->api->method->is_precompile_fallback(runtime, method);
lib/SPVM/Native/Method.c:  void* method = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Method.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Method.c:  env->api->method->set_is_precompile_fallback(runtime, method, is_precompile_fallback);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  int32_t index = env->api->class_var->get_index(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  const char* name = env->api->class_var->get_name(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* obj_name = env->new_string_nolen(env, stack, name);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  void* basic_type = env->api->class_var->get_basic_type(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  int32_t type_dimension = env->api->class_var->get_type_dimension(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  int32_t type_flag = env->api->class_var->get_type_flag(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* class_var = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassVar.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/ClassVar.c:  void* current_basic_type = env->api->class_var->get_current_basic_type(runtime, class_var);
lib/SPVM/Native/ClassVar.c:  void* obj_current_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", current_basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassVar.c:  env->set_field_object_by_name(env, stack, obj_current_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  const char* class_name = env->api->class_file->get_class_name(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* obj_class_name = env->new_string_nolen(env, stack, class_name);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  const char* file = env->api->class_file->get_file(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* obj_file = env->new_string_nolen(env, stack, file);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:    file = env->get_chars(env, stack, obj_file);
lib/SPVM/Native/ClassFile.c:  env->api->class_file->set_file(compiler, class_file, file);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  const char* dir = env->api->class_file->get_dir(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* obj_dir = env->new_string_nolen(env, stack, dir);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:    dir = env->get_chars(env, stack, obj_dir);
lib/SPVM/Native/ClassFile.c:  env->api->class_file->set_dir(compiler, class_file, dir);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  const char* rel_file = env->api->class_file->get_rel_file(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* obj_rel_file = env->new_string_nolen(env, stack, rel_file);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:    rel_file = env->get_chars(env, stack, obj_rel_file);
lib/SPVM/Native/ClassFile.c:  env->api->class_file->set_rel_file(compiler, class_file, rel_file);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  const char* content = env->api->class_file->get_content(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* obj_content = env->new_string_nolen(env, stack, content);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:    content = env->get_chars(env, stack, obj_content);
lib/SPVM/Native/ClassFile.c:  env->api->class_file->set_content(compiler, class_file, content);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  int32_t content_length = env->api->class_file->get_content_length(compiler, class_file);
lib/SPVM/Native/ClassFile.c:  void* class_file = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/ClassFile.c:  void* obj_compiler = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/ClassFile.c:  void* compiler = env->get_pointer(env, stack, obj_compiler);
lib/SPVM/Native/ClassFile.c:  env->api->class_file->set_content_length(compiler, class_file, content_length);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  int32_t index = env->api->field->get_index(runtime, field);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  const char* name = env->api->field->get_name(runtime, field);
lib/SPVM/Native/Field.c:  void* obj_name = env->new_string_nolen(env, stack, name);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  void* basic_type = env->api->field->get_basic_type(runtime, field);
lib/SPVM/Native/Field.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  int32_t type_dimension = env->api->field->get_type_dimension(runtime, field);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  int32_t type_flag = env->api->field->get_type_flag(runtime, field);
lib/SPVM/Native/Field.c:  void* field = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Field.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Field.c:  void* current_basic_type = env->api->field->get_current_basic_type(runtime, field);
lib/SPVM/Native/Field.c:  void* obj_current_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", current_basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Field.c:  env->set_field_object_by_name(env, stack, obj_current_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Env.pm:  my $stack = $env->new_stack;
lib/SPVM/Native/Arg.c:  void* arg = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Arg.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Arg.c:  int32_t index = env->api->arg->get_index(runtime, arg);
lib/SPVM/Native/Arg.c:  void* arg = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Arg.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Arg.c:  void* basic_type = env->api->arg->get_basic_type(runtime, arg);
lib/SPVM/Native/Arg.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  void* arg = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Arg.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Arg.c:  int32_t type_dimension = env->api->arg->get_type_dimension(runtime, arg);
lib/SPVM/Native/Arg.c:  void* arg = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Arg.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Arg.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/Arg.c:  int32_t type_flag = env->api->arg->get_type_flag(runtime, arg);
lib/SPVM/Native/API.c:  void* obj_self= env->new_object_by_name(env, stack, "Native::API", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:    return env->die(env, stack, "The runtime environemnt $env must be defined.", __func__, __FILE__, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  env->set_field_object_by_name(env, stack, obj_self, "env", obj_api_env, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:    return env->die(env, stack, "The runtime stack $stack must be defined.", __func__, __FILE__, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  env->set_field_object_by_name(env, stack, obj_self, "stack", obj_api_stack, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  int32_t check_ok = env->check_stack_env(api_env, api_stack);
lib/SPVM/Native/API.c:    return env->die(env, stack, "The runtime stack $stack must be created by the runtime environemnt $env.", __func__, __FILE__, __LINE__);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  api_env->call_init_methods(api_env, api_stack);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  api_env->destroy_class_vars(api_env, api_stack);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  error_id = api_env->set_command_info_program_name(api_env, api_stack, obj_program_name);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  error_id = api_env->set_command_info_argv(api_env, api_stack, obj_argv);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  error_id = api_env->set_command_info_base_time(api_env, api_stack, base_time);
lib/SPVM/Native/API.c:  void* obj_api_env = env->get_field_object_by_name(env, stack, obj_self, "env", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_ENV* api_env = env->get_pointer(env, stack, obj_api_env);
lib/SPVM/Native/API.c:  void* obj_api_stack = env->get_field_object_by_name(env, stack, obj_self, "stack", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/API.c:  SPVM_VALUE* api_stack = env->get_pointer(env, stack, obj_api_stack);
lib/SPVM/Native/API.c:  void* obj_exception = api_env->get_exception(api_env, api_stack);
lib/SPVM/Native/API.c:  env->set_exception(env, stack, obj_exception);
lib/SPVM/Native/Stack.pm:  my $stack = $env->new_stack;
lib/SPVM/Native/Runtime.pm:  my $stack = $env->new_stack;
lib/SPVM/Native/Env.c:  SPVM_ENV* my_env = env->get_pointer(my_env, stack, obj_my_env);
lib/SPVM/Native/Env.c:  SPVM_VALUE* my_stack = my_env->new_stack(my_env);
lib/SPVM/Native/Env.c:  void* obj_self= env->new_pointer_object_by_name(env, stack, "Native::Stack", my_stack, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Env.c:  env->set_field_object_by_name(env, stack, obj_self, "env", obj_my_env, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Env.c:  int32_t no_destroy = env->get_field_byte_by_name(env, stack, obj_self, "no_destroy", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Env.c:    SPVM_ENV* my_env = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Env.c:    my_env->free_env(my_env);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->get_pointer(env, stack, obj_basic_type);
lib/SPVM/Native/Runtime.c:  void* allocator = env->api->allocator->new_instance();
lib/SPVM/Native/Runtime.c:  void* string_buffer = env->api->string_buffer->new_instance(allocator, 0);
lib/SPVM/Native/Runtime.c:  env->api->runtime->build_precompile_class_source(runtime, string_buffer, basic_type);
lib/SPVM/Native/Runtime.c:  const char* string_buffer_value = env->api->string_buffer->get_string(string_buffer);
lib/SPVM/Native/Runtime.c:  int32_t string_buffer_length = env->api->string_buffer->get_length(string_buffer);
lib/SPVM/Native/Runtime.c:  void* obj_precompile_source = env->new_string(env, stack, string_buffer_value, string_buffer_length);
lib/SPVM/Native/Runtime.c:  env->api->string_buffer->free_instance(string_buffer);
lib/SPVM/Native/Runtime.c:  env->api->allocator->free_instance(allocator);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* method = env->get_pointer(env, stack, obj_method);
lib/SPVM/Native/Runtime.c:  void* allocator = env->api->allocator->new_instance();
lib/SPVM/Native/Runtime.c:  void* string_buffer = env->api->string_buffer->new_instance(allocator, 0);
lib/SPVM/Native/Runtime.c:  env->api->runtime->build_precompile_method_source(runtime, string_buffer, method);
lib/SPVM/Native/Runtime.c:  const char* string_buffer_value = env->api->string_buffer->get_string(string_buffer);
lib/SPVM/Native/Runtime.c:  int32_t string_buffer_length = env->api->string_buffer->get_length(string_buffer);
lib/SPVM/Native/Runtime.c:  void* obj_precompile_method_source = env->new_string(env, stack, string_buffer_value, string_buffer_length);
lib/SPVM/Native/Runtime.c:  env->api->string_buffer->free_instance(string_buffer);
lib/SPVM/Native/Runtime.c:  env->api->allocator->free_instance(allocator);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/Runtime.c:  void* address = env->get_pointer(env, stack, obj_address);
lib/SPVM/Native/Runtime.c:  env->api->method->set_native_address(runtime, method, address);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/Runtime.c:  void* address = env->api->method->get_native_address(runtime, method);
lib/SPVM/Native/Runtime.c:  void* obj_address = env->new_pointer_object_by_name(env, stack, "Native::Address", address, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/Runtime.c:  int32_t is_class_method = env->api->method->is_class_method(runtime, method);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/Runtime.c:  void* address = env->api->method->get_precompile_address(runtime, method);
lib/SPVM/Native/Runtime.c:  void* obj_address = env->new_pointer_object_by_name(env, stack, "Native::Address", address, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/Runtime.c:  void* address = env->get_pointer(env, stack, obj_address);
lib/SPVM/Native/Runtime.c:  env->api->method->set_precompile_address(runtime, method, address);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  int32_t basic_types_length = env->api->runtime->get_basic_types_length(runtime);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_id(runtime, index);
lib/SPVM/Native/Runtime.c:    return env->die(env, stack, "The basic type cannot be found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:    return env->die(env, stack, "The basic type cannot be found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  const char* name = env->get_chars(env, stack, obj_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, name);
lib/SPVM/Native/Runtime.c:    return env->die(env, stack, "The basic type cannot be found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  void* obj_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  env->set_field_object_by_name(env, stack, obj_basic_type, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  void* parent_basic_type = env->api->basic_type->get_parent(runtime, basic_type);
lib/SPVM/Native/Runtime.c:    const char* parent_basic_type_name = env->api->basic_type->get_name(runtime, parent_basic_type);
lib/SPVM/Native/Runtime.c:    obj_parent_basic_type_name = env->new_string_nolen(env, stack, parent_basic_type_name);
lib/SPVM/Native/Runtime.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(runtime, basic_type_name);
lib/SPVM/Native/Runtime.c:  int32_t methods_length = env->api->basic_type->get_methods_length(runtime, basic_type);
lib/SPVM/Native/Runtime.c:    void* method = env->api->basic_type->get_method_by_index(runtime, basic_type, method_index);
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_native(runtime, method)) {
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_precompile(runtime, method)) {
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_enum(runtime, method)) {
lib/SPVM/Native/Runtime.c:  void* obj_method_names = env->new_string_array(env, stack, match_methodes_length);
lib/SPVM/Native/Runtime.c:    void* method = env->api->basic_type->get_method_by_index(runtime, basic_type, method_index);
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_native(runtime, method)) {
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_precompile(runtime, method)) {
lib/SPVM/Native/Runtime.c:      if (env->api->method->is_enum(runtime, method)) {
lib/SPVM/Native/Runtime.c:      const char* method_name = env->api->method->get_name(runtime, method);
lib/SPVM/Native/Runtime.c:      void* obj_method_name = env->new_string_nolen(env, stack, method_name);
lib/SPVM/Native/Runtime.c:      env->set_elem_object(env, stack, obj_method_names, match_method_index, obj_method_name);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  void* obj_compiler = env->get_field_object_by_name(env, stack, obj_self, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  SPVM_ENV* new_env = env->new_env();
lib/SPVM/Native/Runtime.c:  void* obj_env= env->new_pointer_object_by_name(env, stack, "Native::Env", new_env, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  void* runtime = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Runtime.c:  env->set_field_object_by_name(env, stack, obj_env, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Runtime.c:  new_env->runtime = runtime;
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$method_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/MethodCall.c:  void* method = env->get_class_method(env, stack, basic_type_name, method_name);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "The \"%s\" class method in the \"%s\" class cannot be found.", method_name, basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_self = env->new_pointer_object_by_name(env, stack, "Native::MethodCall", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  env->set_field_object_by_name(env, stack, obj_self, "method", obj_method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$method_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/MethodCall.c:  void* method = env->get_instance_method_static(env, stack, basic_type_name, method_name);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "The \"%s\" instance method in the \"%s\" class cannot be found.", method_name, basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_self = env->new_pointer_object_by_name(env, stack, "Native::MethodCall", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  env->set_field_object_by_name(env, stack, obj_self, "method", obj_method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$instance must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "$method_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/MethodCall.c:  void* method = env->get_instance_method(env, stack, obj_instance, method_name);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "The \"%s\" instance method cannot be found.", method_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_self = env->new_pointer_object_by_name(env, stack, "Native::MethodCall", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  env->set_field_object_by_name(env, stack, obj_self, "method", obj_method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    obj_args = env->new_object_array_by_name(env, stack, "object", 0, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  int32_t args_length = env->length(env, stack, obj_args);
lib/SPVM/Native/MethodCall.c:  void* obj_method = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "method", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* method = env->get_pointer(env, stack, obj_method);
lib/SPVM/Native/MethodCall.c:  void* runtime = env->runtime;
lib/SPVM/Native/MethodCall.c:  int32_t method_required_args_length = env->api->method->get_required_args_length(runtime, method);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "Too few arguments.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  int32_t method_args_length = env->api->method->get_args_length(runtime, method);
lib/SPVM/Native/MethodCall.c:    return env->die(env, stack, "Too many arguments.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    void* obj_arg = env->get_elem_object(env, stack, obj_args, arg_index);
lib/SPVM/Native/MethodCall.c:    void* method_arg = env->api->method->get_arg_by_index(runtime, method, arg_index);
lib/SPVM/Native/MethodCall.c:    void* method_arg_basic_type = env->api->arg->get_basic_type(runtime, method_arg);
lib/SPVM/Native/MethodCall.c:    int32_t method_arg_basic_type_id = env->api->basic_type->get_id(runtime, method_arg_basic_type);
lib/SPVM/Native/MethodCall.c:    int32_t method_arg_type_dimension = env->api->arg->get_type_dimension(runtime, method_arg);
lib/SPVM/Native/MethodCall.c:    int32_t method_arg_type_flag = env->api->arg->get_type_flag(runtime, method_arg);
lib/SPVM/Native/MethodCall.c:    int32_t method_arg_basic_type_category = env->api->basic_type->get_category(runtime, method_arg_basic_type);
lib/SPVM/Native/MethodCall.c:    int32_t method_arg_is_object_type = env->api->type->is_object_type(runtime, method_arg_basic_type, method_arg_type_dimension, method_arg_type_flag);
lib/SPVM/Native/MethodCall.c:        void* arg_basic_type = env->get_object_basic_type(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:        const char* arg_basic_type_name = env->api->basic_type->get_name(runtime, arg_basic_type);
lib/SPVM/Native/MethodCall.c:        int32_t arg_type_dimension = env->get_object_type_dimension(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:        int32_t can_assign = env->api->type->can_assign(
lib/SPVM/Native/MethodCall.c:          return env->die(env, stack, "The %dth argument cannot be assigned.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:        return env->die(env, stack, "The %dth argument must be defined.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Byte", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Byte class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int8_t value = env->get_field_byte_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Short", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Short class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int16_t value = env->get_field_short_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Int", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Int class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int32_t value = env->get_field_int_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Long", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Long class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int64_t value = env->get_field_long_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Float", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Float class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              float value = env->get_field_float_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "Double", 0)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the Double class.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              double value = env->get_field_double_by_name(env, stack, obj_arg, "value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          int32_t method_arg_width = env->api->type->get_type_width(runtime, method_arg_basic_type, method_arg_type_dimension, method_arg_type_flag);
lib/SPVM/Native/MethodCall.c:          int32_t arg_array_length = env->length(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:            return env->die(env, stack, "The array length of the %dth argument must be %d.", arg_index + 1, method_arg_width, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          void* method_arg_mulnum_field = env->api->basic_type->get_field_by_index(runtime, method_arg_basic_type, 0);
lib/SPVM/Native/MethodCall.c:          void* method_arg_mulnum_field_basic_type = env->api->field->get_basic_type(runtime, method_arg_mulnum_field);
lib/SPVM/Native/MethodCall.c:          int32_t method_arg_mulnum_field_basic_type_id = env->api->basic_type->get_id(runtime, method_arg_mulnum_field_basic_type);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "byte", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the byte[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int8_t* value_ref = env->get_elems_byte(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "short", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the short[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int16_t* value_ref = env->get_elems_short(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "int", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the int[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int32_t* value_ref = env->get_elems_int(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "long", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the long[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int64_t* value_ref = env->get_elems_long(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "float", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the float[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              float* value_ref = env->get_elems_float(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "double", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the double[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              double* value_ref = env->get_elems_double(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:          int32_t arg_array_length = env->length(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:            return env->die(env, stack, "The array length of the %dth argument must be 1.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "byte", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the byte[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int8_t* value_ref = env->get_elems_byte(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "short", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the short[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int16_t* value_ref = env->get_elems_short(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "int", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the int[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int32_t* value_ref = env->get_elems_int(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "long", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the long[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int64_t* value_ref = env->get_elems_long(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "float", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the float[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              float* value_ref = env->get_elems_float(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "double", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the double[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              double* value_ref = env->get_elems_double(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:          int32_t method_arg_width = env->api->type->get_type_width(runtime, method_arg_basic_type, method_arg_type_dimension, method_arg_type_flag);
lib/SPVM/Native/MethodCall.c:          int32_t arg_array_length = env->length(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:            return env->die(env, stack, "The array length of the %dth argument must be %d.", arg_index + 1, method_arg_width, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          void* method_arg_mulnum_field = env->api->basic_type->get_field_by_index(runtime, method_arg_basic_type, 0);
lib/SPVM/Native/MethodCall.c:          void* method_arg_mulnum_field_basic_type = env->api->field->get_basic_type(runtime, method_arg_mulnum_field);
lib/SPVM/Native/MethodCall.c:          int32_t method_arg_mulnum_field_basic_type_id = env->api->basic_type->get_id(runtime, method_arg_mulnum_field_basic_type);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "byte", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the byte[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int8_t* value_ref = env->get_elems_byte(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "short", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the short[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int16_t* value_ref = env->get_elems_short(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "int", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the int[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int32_t* value_ref = env->get_elems_int(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "long", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the long[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              int64_t* value_ref = env->get_elems_long(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "float", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the float[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              float* value_ref = env->get_elems_float(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:              if (!env->is_type_by_name(env, stack, obj_arg, "double", 1)) {
lib/SPVM/Native/MethodCall.c:                return env->die(env, stack, "The type of the %dth argument must be the double[] type.", arg_index + 1, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:              double* value_ref = env->get_elems_double(env, stack, obj_arg);
lib/SPVM/Native/MethodCall.c:  error_id = env->call_method(env, stack, method, stack_length);
lib/SPVM/Native/MethodCall.c:  void* method_return_basic_type = env->api->method->get_return_basic_type(runtime, method);
lib/SPVM/Native/MethodCall.c:  int32_t method_return_basic_type_id = env->api->basic_type->get_id(runtime, method_return_basic_type);
lib/SPVM/Native/MethodCall.c:  int32_t method_return_type_dimension = env->api->method->get_return_type_dimension(runtime, method);
lib/SPVM/Native/MethodCall.c:  int32_t method_return_type_flag = env->api->method->get_return_type_flag(runtime, method);
lib/SPVM/Native/MethodCall.c:  int32_t method_return_basic_type_category = env->api->basic_type->get_category(runtime, method_return_basic_type);
lib/SPVM/Native/MethodCall.c:  int32_t method_return_is_object_type = env->api->type->is_object_type(runtime, method_return_basic_type, method_return_type_dimension, method_return_type_flag);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Byte", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Short", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Int", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Long", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Float", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:          env->call_class_method_by_name(env, stack, "Double", "new", 1, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:      int32_t method_return_width = env->api->type->get_type_width(runtime, method_return_basic_type, method_return_type_dimension, method_return_type_flag);
lib/SPVM/Native/MethodCall.c:      void* method_return_mulnum_field = env->api->basic_type->get_field_by_index(runtime, method_return_basic_type, 0);
lib/SPVM/Native/MethodCall.c:      void* method_return_mulnum_field_basic_type = env->api->field->get_basic_type(runtime, method_return_mulnum_field);
lib/SPVM/Native/MethodCall.c:      int32_t method_return_mulnum_field_basic_type_id = env->api->basic_type->get_id(runtime, method_return_mulnum_field_basic_type);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_byte_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          int8_t* return_value_ref = env->get_elems_byte(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_short_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          int16_t* return_value_ref = env->get_elems_short(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_int_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          int32_t* return_value_ref = env->get_elems_int(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_long_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          int64_t* return_value_ref = env->get_elems_long(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_float_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          float* return_value_ref = env->get_elems_float(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:          void* obj_return_value = env->new_double_array(env, stack, method_return_width);
lib/SPVM/Native/MethodCall.c:          double* return_value_ref = env->get_elems_double(env, stack, obj_return_value);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "$callback must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    stack = current_env->get_pointer(current_env, current_stack, obj_stack);
lib/SPVM/Native/MethodCall.c:  int32_t is_valid_env = env->check_stack_env(env, stack);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The environment of $stack is not equal to the current environment.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  env->call_instance_method_by_name(env, stack, "", 0, error_id_ref, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "$basic_type_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* basic_type_name = current_env->get_chars(current_env, current_stack, obj_basic_type_name);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "$method_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  const char* method_name = current_env->get_chars(current_env, current_stack, obj_method_name);
lib/SPVM/Native/MethodCall.c:    stack = current_env->get_pointer(current_env, current_stack, obj_stack);
lib/SPVM/Native/MethodCall.c:    env = current_env->get_pointer(current_env, current_stack, obj_env);
lib/SPVM/Native/MethodCall.c:  int32_t is_valid_env = env->check_stack_env(env, stack);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The environment of $stack is not equal to the environment.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* method = env->get_class_method(env, stack, basic_type_name, method_name);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The \"%s\" method in the \"%s\" class cannot be found.", method_name, basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, error_id_ref, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    void* obj_exception = env->get_exception(env, stack);
lib/SPVM/Native/MethodCall.c:    const char* exception = env->get_chars(env, stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "%s", method_name, basic_type_name, exception, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  int32_t method_required_args_length = env->api->method->get_required_args_length(env->runtime, method);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The length of the required arguments of the \"%s\" method in the \"%s\" class must be 0.", method_name, basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* return_basic_type = env->api->method->get_return_basic_type(env->runtime, method);
lib/SPVM/Native/MethodCall.c:  int32_t return_basic_type_id = env->api->basic_type->get_id(env->runtime, return_basic_type);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The return type of the \"%s\" method in the \"%s\" must be the void type.", method_name, basic_type_name, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  *error_id_ref = env->call_method(env, stack, method, 0);
lib/SPVM/Native/MethodCall.c:    void* obj_exception = env->get_exception(env, stack);
lib/SPVM/Native/MethodCall.c:    const char* exception = env->get_chars(env, stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The method call of the \"%s\" method in the \"%s\" failed:%s", method_name, basic_type_name, exception, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    stack = current_env->get_pointer(current_env, current_stack, obj_stack);
lib/SPVM/Native/MethodCall.c:    env = current_env->get_pointer(current_env, current_stack, obj_env);
lib/SPVM/Native/MethodCall.c:  int32_t is_valid_env = env->check_stack_env(env, stack);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The environment of $stack is not equal to the environment.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:  void* obj_exception = env->get_exception(env, stack);
lib/SPVM/Native/MethodCall.c:    const char* exception = env->get_chars(env, stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    int32_t exception_length = env->length(env, stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    obj_exception_clone = current_env->new_string(current_env, current_stack, exception, exception_length);
lib/SPVM/Native/MethodCall.c:    stack = current_env->get_pointer(current_env, current_stack, obj_stack);
lib/SPVM/Native/MethodCall.c:    env = current_env->get_pointer(current_env, current_stack, obj_env);
lib/SPVM/Native/MethodCall.c:  int32_t is_valid_env = env->check_stack_env(env, stack);
lib/SPVM/Native/MethodCall.c:    return current_env->die(current_env, current_stack, "The environment of $stack is not equal to the environment.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/MethodCall.c:    const char* exception = current_env->get_chars(current_env, current_stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    int32_t exception_length = current_env->length(current_env, current_stack, obj_exception);
lib/SPVM/Native/MethodCall.c:    obj_exception_clone = env->new_string(env, stack, exception, exception_length);
lib/SPVM/Native/MethodCall.c:  env->set_exception(env, stack, obj_exception_clone);
lib/SPVM/Native/Compiler.c:  void* compiler = env->api->compiler->new_instance();
lib/SPVM/Native/Compiler.c:  void* obj_self = env->new_pointer_object_by_name(env, stack, "Native::Compiler", compiler, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void* runtime = env->api->compiler->get_runtime(compiler);
lib/SPVM/Native/Compiler.c:  void* obj_runtime = env->new_pointer_object_by_name(env, stack, "Native::Runtime", runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  env->set_field_object_by_name(env, stack, obj_runtime, "compiler", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void** obj_compiler_address = env->get_field_object_ref_by_name(env, stack, obj_runtime, "compiler", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  env->weaken(env, stack, obj_compiler_address);
lib/SPVM/Native/Compiler.c:  env->set_field_object_by_name(env, stack, obj_self, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  env->set_field_object_by_name(env, stack, obj_self, "runtime", NULL, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  env->api->compiler->free_instance(compiler);
lib/SPVM/Native/Compiler.c:    basic_type_name = env->get_chars(env, stack, obj_basic_type_name);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  int32_t status = env->api->compiler->compile(compiler, basic_type_name);
lib/SPVM/Native/Compiler.c:    void* obj_prefix = env->new_string_nolen(env, stack, "[Compile Error]");
lib/SPVM/Native/Compiler.c:    void* obj_error_messages_string = env->new_string(env, stack, NULL, 0);
lib/SPVM/Native/Compiler.c:    void* obj_lf = env->new_string_nolen(env, stack, "\n");
lib/SPVM/Native/Compiler.c:    int32_t error_messages_length = env->api->compiler->get_error_messages_length(compiler);
lib/SPVM/Native/Compiler.c:    void* obj_error_messages = env->new_string_array(env, stack, error_messages_length);
lib/SPVM/Native/Compiler.c:      const char* error_message = env->api->compiler->get_error_message(compiler, i);
lib/SPVM/Native/Compiler.c:      void* obj_error_message = env->new_string_nolen(env, stack, error_message);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_prefix);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_error_message);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_lf);
lib/SPVM/Native/Compiler.c:    env->die(env, stack, env->get_chars(env, stack, obj_error_messages_string), __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void* obj_runtime = env->get_field_object_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:    start_file = env->get_chars(env, stack, obj_start_file);
lib/SPVM/Native/Compiler.c:  env->api->compiler->set_start_file(compiler, start_file);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  env->api->compiler->set_start_line(compiler, start_line);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  int32_t error_messages_length = env->api->compiler->get_error_messages_length(compiler);
lib/SPVM/Native/Compiler.c:  void* obj_error_messages = env->new_string_array(env, stack, error_messages_length);
lib/SPVM/Native/Compiler.c:    const char* error_message = env->api->compiler->get_error_message(compiler, i);
lib/SPVM/Native/Compiler.c:    void* obj_error_message = env->new_string_nolen(env, stack, error_message);
lib/SPVM/Native/Compiler.c:    env->set_elem_object(env, stack, obj_error_messages, i, obj_error_message);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:    include_dir = env->get_chars(env, stack, obj_include_dir);
lib/SPVM/Native/Compiler.c:  env->api->compiler->add_include_dir(compiler, include_dir);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:    include_dir = env->get_chars(env, stack, obj_include_dir);
lib/SPVM/Native/Compiler.c:  env->api->compiler->prepend_include_dir(compiler, include_dir);
lib/SPVM/Native/Compiler.c:    return env->die(env, stack, "$class_name must be defined.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  const char* class_name = env->get_chars(env, stack, obj_class_name);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  void* class_file = env->api->compiler->get_class_file(compiler, class_name);
lib/SPVM/Native/Compiler.c:    obj_class_file = env->new_pointer_object_by_name(env, stack, "Native::ClassFile", class_file, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:    env->set_field_object_by_name(env, stack, obj_class_file, "compiler", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:    source = env->get_chars(env, stack, obj_source);
lib/SPVM/Native/Compiler.c:  void* compiler = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/Compiler.c:  int32_t status = env->api->compiler->compile_anon_class(compiler, source, &anon_basic_type_name);
lib/SPVM/Native/Compiler.c:    void* obj_prefix = env->new_string_nolen(env, stack, "[Compile Error]");
lib/SPVM/Native/Compiler.c:    void* obj_error_messages_string = env->new_string(env, stack, NULL, 0);
lib/SPVM/Native/Compiler.c:    void* obj_lf = env->new_string_nolen(env, stack, "\n");
lib/SPVM/Native/Compiler.c:    int32_t error_messages_length = env->api->compiler->get_error_messages_length(compiler);
lib/SPVM/Native/Compiler.c:    void* obj_error_messages = env->new_string_array(env, stack, error_messages_length);
lib/SPVM/Native/Compiler.c:      const char* error_message = env->api->compiler->get_error_message(compiler, i);
lib/SPVM/Native/Compiler.c:      void* obj_error_message = env->new_string_nolen(env, stack, error_message);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_prefix);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_error_message);
lib/SPVM/Native/Compiler.c:      obj_error_messages_string = env->concat(env, stack, obj_error_messages_string, obj_lf);
lib/SPVM/Native/Compiler.c:    env->die(env, stack, env->get_chars(env, stack, obj_error_messages_string), __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/Compiler.c:  void* obj_anon_basic_type_name = env->new_string(env, stack, anon_basic_type_name, strlen(anon_basic_type_name));
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t id = env->api->basic_type->get_id(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  const char* name = env->api->basic_type->get_name(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* obj_name = env->new_string_nolen(env, stack, name);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  const char* class_dir = env->api->basic_type->get_class_dir(runtime, basic_type);
lib/SPVM/Native/BasicType.c:    obj_class_dir = env->new_string_nolen(env, stack, class_dir);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  const char* class_rel_file = env->api->basic_type->get_class_rel_file(runtime, basic_type);
lib/SPVM/Native/BasicType.c:    obj_class_rel_file = env->new_string_nolen(env, stack, class_rel_file);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* parent = env->api->basic_type->get_parent(runtime, basic_type);
lib/SPVM/Native/BasicType.c:    void* obj_parent = env->new_pointer_object_by_name(env, stack, "Native::BasicType", parent, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:    env->set_field_object_by_name(env, stack, obj_parent, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t category = env->api->basic_type->get_category(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  const char* version_string = env->api->basic_type->get_version_string(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* obj_version_string = env->new_string_nolen(env, stack, version_string);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t is_pointer = env->api->basic_type->is_pointer(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t is_anon = env->api->basic_type->is_anon(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* class_var = env->api->basic_type->get_class_var_by_index(runtime, basic_type, class_var_index);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The class variable is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_class_var = env->new_pointer_object_by_name(env, stack, "Native::ClassVar", class_var, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_class_var, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The class variable name must be specified.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  const char* class_var_name = env->get_chars(env, stack, obj_class_var_name);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* class_var = env->api->basic_type->get_class_var_by_name(runtime, basic_type, class_var_name);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The class variable is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_class_var = env->new_pointer_object_by_name(env, stack, "Native::ClassVar", class_var, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_class_var, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t class_vars_length = env->api->basic_type->get_class_vars_length(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* field = env->api->basic_type->get_field_by_index(runtime, basic_type, field_index);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The class variable is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_field = env->new_pointer_object_by_name(env, stack, "Native::Field", field, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_field, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The field name must be specified.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  const char* field_name = env->get_chars(env, stack, obj_field_name);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* field = env->api->basic_type->get_field_by_name(runtime, basic_type, field_name);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The field is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_field = env->new_pointer_object_by_name(env, stack, "Native::Field", field, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_field, "runtime", obj_self, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t get_fields_length = env->api->basic_type->get_fields_length(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* method = env->api->basic_type->get_method_by_index(runtime, basic_type, method_index);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The method is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_method, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The method name must be specified.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  const char* method_name = env->get_chars(env, stack, obj_method_name);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* method = env->api->basic_type->get_method_by_name(runtime, basic_type, method_name);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The method is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_method = env->new_pointer_object_by_name(env, stack, "Native::Method", method, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_method, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t get_methods_length = env->api->basic_type->get_methods_length(runtime, basic_type);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  void* anon_basic_type = env->api->basic_type->get_anon_basic_type_by_index(runtime, basic_type, anon_basic_type_index);
lib/SPVM/Native/BasicType.c:    return env->die(env, stack, "The basic type is not found.", __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* obj_anon_basic_type = env->new_pointer_object_by_name(env, stack, "Native::BasicType", anon_basic_type, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  env->set_field_object_by_name(env, stack, obj_anon_basic_type, "runtime", obj_runtime, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* basic_type = env->get_pointer(env, stack, obj_self);
lib/SPVM/Native/BasicType.c:  void* obj_runtime = env->get_field_object_defined_and_has_pointer_by_name(env, stack, obj_self, "runtime", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Native/BasicType.c:  void* runtime = env->get_pointer(env, stack, obj_runtime);
lib/SPVM/Native/BasicType.c:  int32_t anon_basic_types_length = env->api->basic_type->get_anon_basic_types_length(runtime, basic_type);
lib/SPVM/Document/NativeAPI/Method.pm:  SPVM_API_METHOD* api_method = env->api->method;
lib/SPVM/Document/NativeAPI/Method.pm:  void* basic_type = env->get_basic_type(env, stack, "Foo");
lib/SPVM/Document/NativeAPI/Method.pm:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "get");
lib/SPVM/Document/NativeAPI/Method.pm:  const char* method_name = api_method->get_name(env->runtime, method);
lib/SPVM/Document/NativeAPI/ClassVariable.pm:  SPVM_API_CLASS_VAR* api_class_var = env->api->class_var;
lib/SPVM/Document/NativeAPI/ClassVariable.pm:  void* basic_type = env->get_basic_type(env, stack, "Foo");
lib/SPVM/Document/NativeAPI/ClassVariable.pm:  void* class_var = env->api->basic_type->get_class_var_by_name(env->runtime, basic_type, "$VAR");
lib/SPVM/Document/NativeAPI/ClassVariable.pm:  const char* class_var_name = api_class_var->get_name(env->runtime, class_var);
lib/SPVM/Document/NativeAPI/Allocator.pm:  SPVM_API_ALLOCATOR* api_allocator = env->api->allocator;
lib/SPVM/Document/NativeAPI/Compiler.pm:  SPVM_API_COMPILER* api_compiler = env->api->compiler;
lib/SPVM/Document/NativeAPI/Internal.pm:  SPVM_API_INTERNAL* api_internal = env->api->internal;
lib/SPVM/Document/NativeAPI/Mutex.pm:  SPVM_API_MUTEX* api_mutex = env->api->mutex;
lib/SPVM/Document/NativeAPI/Field.pm:  SPVM_API_FIELD* api_field = env->api->field;
lib/SPVM/Document/NativeAPI/Field.pm:  void* basic_type = env->get_basic_type(env, stack, "Foo");
lib/SPVM/Document/NativeAPI/Field.pm:  void* field = env->api->basic_type->get_field_by_name(env->runtime, basic_type, "value");
lib/SPVM/Document/NativeAPI/Field.pm:  const char* field_name = api_field->get_name(env->runtime, field);
lib/SPVM/Document/NativeAPI/BasicType.pm:  SPVM_API_BASIC_TYPE* api_basic_type = env->api->basic_type;
lib/SPVM/Document/NativeAPI/BasicType.pm:  void* basic_type = env->get_basic_type(env, stack, "Int");
lib/SPVM/Document/NativeAPI/BasicType.pm:  const char* basic_type_name = api_basic_type->get_name(env->runtime, basic_type);
lib/SPVM/Document/NativeAPI/Runtime.pm:  SPVM_API_RUNTIME* api_runtime = env->api->runtime;
lib/SPVM/Document/NativeAPI/Runtime.pm:  int32_t basic_types_length = api_runtime->get_basic_types_length(env->runtime);
lib/SPVM/Document/NativeAPI/Type.pm:  SPVM_API_TYPE* api_type = env->api->type;
lib/SPVM/Document/NativeAPI/StringBuffer.pm:  SPVM_API_STRING_BUFFER* string_buffer_api = env->api->string_buffer;
lib/SPVM/Document/NativeAPI/StringBuffer.pm:  SPVM_API_ALLOCATOR* api_allocator = env->api->allocator;
lib/SPVM/Document/NativeAPI/ClassFile.pm:  SPVM_API_CLASS_FILE* api_class_file = env->api->class_file;
lib/SPVM/Document/NativeAPI/ClassFile.pm:  void* class_file = env->api->compiler->get_class_file(compiler, "MyClass");
lib/SPVM/Document/NativeAPI/Argument.pm:  SPVM_API_ARG* api_arg = env->api->arg;
lib/SPVM/Document/NativeAPI/Argument.pm:  SPVM_API_METHOD* api_method = env->api->method;
lib/SPVM/Document/NativeAPI/Argument.pm:  void* basic_type = env->get_basic_type(env, stack, "Foo");
lib/SPVM/Document/NativeAPI/Argument.pm:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "get");
lib/SPVM/Document/NativeAPI/Argument.pm:  void* arg = api_method->get_arg_by_index(env->runtime, method, 0);
lib/SPVM/Document/NativeAPI/Argument.pm:  void* arg_basic_type = api_arg->get_basic_type(env->runtime, arg);
lib/SPVM/Document/NativeClass.pm:  void* obj_point = env->new_object_by_name(env, stack, "Point", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeClass.pm:    env->call_class_method_by_name(env, stack, "MyClass", "sum", args_width, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeClass.pm:  const char* chars = env->get_chars(env, stack, obj_string);
lib/SPVM/Document/NativeClass.pm:  int32_t* values = env->get_elems_int(env, stack, obj_array);
lib/SPVM/Document/NativeClass.pm:  env->set_exception(env, stack, env->new_string_nolen(env, stack, "An exception is thrown."));
lib/SPVM/Document/NativeClass.pm:  return env->die("The value must be %d.", 3, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeClass.pm:    strcut tm* st_tm = (struct tm*)env->new_memory_block(env, stack, sizeof (struct tm));
lib/SPVM/Document/NativeClass.pm:    void* obj_tm = env->new_object_by_name(env, stack, "MyTm", error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeClass.pm:    env->set_pointer(env, stack, obj_tm, st_tm);
lib/SPVM/Document/NativeClass.pm:    strcut tm* st_tm = (struct tm*)env->get_pointer(env, stack, obj_tm);
lib/SPVM/Document/NativeClass.pm:    strcut tm* st_tm = (struct tm*)env->get_pointer(env, stack, obj_tm);
lib/SPVM/Document/NativeClass.pm:    env->free_memory_block(env, stack, st_tm);
lib/SPVM/Document/NativeClass.pm:  int32_t mortal_stack_top = env->enter_scope(env, stack);
lib/SPVM/Document/NativeClass.pm:  env->push_mortal(env, stack, object);
lib/SPVM/Document/NativeClass.pm:  env->leave_scope(env, stack, mortal_stack_top);
lib/SPVM/Document/NativeAPI.pm:  void* runtime = env->runtime;
lib/SPVM/Document/NativeAPI.pm:  SPVM_API_BASIC_TYPE* api_basic_type = env->api->basic_type;
lib/SPVM/Document/NativeAPI.pm:  int32_t args_width = env->args_width(env, stack);
lib/SPVM/Document/NativeAPI.pm:  int32_t basic_type_id = env->get_basic_type_id(env, stack, "Int");
lib/SPVM/Document/NativeAPI.pm:  void* class_var = env->get_class_var(env, stack, "MyClass", "$VAR");
lib/SPVM/Document/NativeAPI.pm:  int8_t value = env->get_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int16_t value = env->get_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t value = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int64_t value = env->get_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  float value = env->get_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  double value = env->get_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* value = env->get_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$INT_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", 15, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", minimal, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* field = env->get_field(env, stack, object, "x");
lib/SPVM/Document/NativeAPI.pm:  void* field = env->get_field_static(env, stack, "Point", "x");
lib/SPVM/Document/NativeAPI.pm:  int8_t byte_value = env->get_field_byte_by_name(env, stack, object, "byte_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t short_value = env->get_field_short_by_name(env, stack, object, "short_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t int_value = env->get_field_int_by_name(env, stack, object, "int_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t long_value = env->get_field_long_by_name(env, stack, object, "long_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t float_value = env->get_field_float_by_name(env, stack, object, "float_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  int8_t double_value = env->get_field_double_by_name(env, stack, object, "double_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* object_minimal = env->get_field_object_by_name(env, stack, object_simple, "object_value", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_byte_by_name(env, stack, object, "byte_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_short_by_name(env, stack, object, "short_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_int_by_name(env, stack, object, "int_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_long_by_name(env, stack, object, "long_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_float_by_name(env, stack, object, "float_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_double_by_name(env, stack, object, "double_value", 13, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  env->set_field_object_by_name(env, stack, object_simple, "object_value", object_minimal, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* method = env->get_method(env, stack, "Foo", "get");
lib/SPVM/Document/NativeAPI.pm:  void* method = env->get_class_method(env, stack, "Foo", "get");
lib/SPVM/Document/NativeAPI.pm:  void* method = env->get_instance_method_static(env, stack, "Foo", "get");
lib/SPVM/Document/NativeAPI.pm:  void* method = env->get_instance_method(env, stack, object, "get");
lib/SPVM/Document/NativeAPI.pm:    env->call_class_method_by_name(env, stack, "MyClass", "sum", args_width, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:    env->call_instance_method_static_by_name(env, stack, "Point", "x", args_width, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* basic_type = env->get_basic_type(env, stack, "Int");
lib/SPVM/Document/NativeAPI.pm:  void* object = env->new_object(env, stack, basic_type);
lib/SPVM/Document/NativeAPI.pm:  void* obj_point = env->new_object_by_name(env, stack, "Point", &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  void* basic_type = env->get_basic_type(env, stack, "MyTm");
lib/SPVM/Document/NativeAPI.pm:  void* st_tm = env->new_memory_block(env, stack, sizeof (struct tm));
lib/SPVM/Document/NativeAPI.pm:  void* obj_st_tm = env->new_pointer(env, stack, basic_type, st_tm);
lib/SPVM/Document/NativeAPI.pm:  void* minimal = env->new_pointer_object_by_name(env, stack, "TestCase::Pointer", pointer, &error_id, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  strcut tm* tm = (struct tm*)env->get_pointer(env, stack, obj_tm);
lib/SPVM/Document/NativeAPI.pm:  void* str_obj = env->new_string_nolen(env, stack, "Hello World");
lib/SPVM/Document/NativeAPI.pm:  void* str_obj = env->new_string(env, stack, "Hello \0World", 11);
lib/SPVM/Document/NativeAPI.pm:  void* byte_array = env->new_byte_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  void* short_array = env->new_short_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  void* int_array = env->new_int_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  void* long_array = env->new_long_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  void* float_array = env->new_float_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  void* double_array = env->new_double_array(env, stack, 100);
lib/SPVM/Document/NativeAPI.pm:  int32_t basic_type_id = env->get_basic_type_id(env, stack, "Int");
lib/SPVM/Document/NativeAPI.pm:  void* object_array = env->new_object_array(env, stack, basic_type_id, 100);
lib/SPVM/Document/NativeAPI.pm:  int32_t basic_type_id = env->get_basic_type_id(env, stack, "Int");
lib/SPVM/Document/NativeAPI.pm:  void* multi_array = env->new_muldim_array(env, stack, basic_type_id, 2, 100);
lib/SPVM/Document/NativeAPI.pm:  int32_t basic_type_id = env->get_basic_type_id(env, stack, "Complex_2d");
lib/SPVM/Document/NativeAPI.pm:  void* value_array = env->new_mulnum_array(env, stack, basic_type_id, 100);
lib/SPVM/Document/NativeAPI.pm:  int32_t length = env->length(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  int8_t* values = env->get_elems_byte(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  int16_t* values = env->get_elems_short(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  int32_t* values = env->get_elems_int(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  int64_t* values = env->get_elems_long(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  float* values = env->get_elems_float(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  double* values = env->get_elems_double(env, stack, array);
lib/SPVM/Document/NativeAPI.pm:  void* object = env->get_elem_object(env, stack, array, 3);
lib/SPVM/Document/NativeAPI.pm:  env->get_elem_object(env, stack, array, 3, object);
lib/SPVM/Document/NativeAPI.pm:  const char* chars = env->get_chars(env, stack, obj_string);
lib/SPVM/Document/NativeAPI.pm:  int32_t bool_value = env->get_bool_object_value(env, stack, bool_object);
lib/SPVM/Document/NativeAPI.pm:  return env->die(env, stack, "The value must be %d.", 3, __func__, FILE_NAME, __LINE__);
lib/SPVM/Document/NativeAPI.pm:  spvm_warnf(env->spvm_stderr(env, stack), "Hello");
lib/SPVM/Document/NativeAPI.pm:  spvm_warnf(env->spvm_stderr(env, stack), "Hello %s%d", "Foo", 3);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/22/13.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/22/13.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/22/13.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/22/13.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/15/13.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/15/13.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/15/13.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe/Precompile/anon/15/13.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:env->api->method->set_precompile_address(env->runtime, method, precompile_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->api->method->set_native_address(env->runtime, method, native_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->runtime = runtime;
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  SPVM_VALUE* stack = env->new_stack(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* obj_program_name = env->new_string(env, stack, command_args[0], strlen(command_args[0]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* obj_argv = env->new_string_array(env, stack, command_args_length - 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:      void* obj_arg = env->new_string(env, stack, command_args[arg_index], strlen(command_args[arg_index]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:      env->set_elem_object(env, stack, obj_argv, arg_index - 1, obj_arg);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:      error_id = env->set_command_info_program_name(env, stack, obj_program_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:        env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:        error_id = env->set_command_info_argv(env, stack, obj_argv);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:          error_id = env->set_command_info_base_time(env, stack, base_time);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:            env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->leave_scope(env, stack, mortal_stack_top);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    error_id = env->check_bootstrap_method(env, stack, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:      env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:      error_id = env->call_init_methods(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:        void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:        void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:        error_id = env->call_method(env, stack, method, args_width);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->print_stderr(env, stack, env->get_exception(env, stack));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->destroy_class_vars(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->free_stack(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->free_env(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Byte.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Byte {\012  has value : ro byte;\012  static method new : Byte ($value : int) {\012    my $self = new Byte;\012    $self->{value} = (byte)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Short.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Short {\012  has value : ro short;\012  static method new : Short ($value : int) {\012    my $self = new Short;\012    $self->{value} = (short)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Int.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Int {\012  has value : ro int;\012  static method new : Int ($value : int) {\012    my $self = new Int;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 153);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Long.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Long {\012  has value : ro long;\012  static method new : Long ($value : long) {\012    my $self = new Long;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 158);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Float.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Float {\012  has value : ro float;\012  static method new : Float ($value : float) {\012    my $self = new Float;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Double.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Double {\012  has value : ro double;\012  static method new : Double ($value : double) {\012    my $self = new Double;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Bool.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Bool {\012  INIT {\012    $TRUE = new Bool;\012    $TRUE->{value} = 1;\012    $FALSE = new Bool;\012    $FALSE->{value} = 0;\012  }\012  \012  our $TRUE : ro Bool;\012  our $FALSE : ro Bool;\012  has value : ro int;\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 193);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 12);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/System.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::System extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 34);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/NotSupported.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::NotSupported extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 40);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "CommandInfo.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class CommandInfo {\012  our $PROGRAM_NAME : ro string;\012  our $ARGV : ro string[];\012  our $BASE_TIME : ro long;\012  }");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 111);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Address.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Address : pointer {\012  static method new : Address () {\012    my $self = new Address;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 112);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/Compile.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::Compile extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 35);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "MyExe");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "MyExe");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "MyExe.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class MyExe {\012  use MyExe::Precompile;\012  use TestCase::NativeAPI2;\012  \012  our $MOVE_BLOCK_PROGRAM_NAME_ZERO : ro string;\012  our $MOVE_BLOCK_ARGV_ZERO : ro string[];\012\012  INIT {\012    $MOVE_BLOCK_PROGRAM_NAME_ZERO = CommandInfo->PROGRAM_NAME;\012    $MOVE_BLOCK_ARGV_ZERO = CommandInfo->ARGV;\012  }\012  \012  static method main : void () {\012    my $program_name = CommandInfo->PROGRAM_NAME;\012    my $argv = CommandInfo->ARGV;\012    \012    my $sum = MyExe::Precompile->sum(1, 2);\012    my $ret1 = TestCase::NativeAPI2->src_foo;\012    my $ret2 = TestCase::NativeAPI2->src_bar;\012    \012    my $ret3 = MyExe::Precompile->anon_method_sum;\012    \012    my $ret4 = TestCase::NativeAPI2->mylib2_source1_func1;\012    \012    my $global_program_name = CommandInfo->PROGRAM_NAME;\012    \012    unless ($global_program_name == $program_name) {\012      die \"Wrong\";\012    }\012    \012    my $global_argv = CommandInfo->ARGV;\012    unless ($global_argv == $argv) {\012      die \"Wrong\";\012    }\012    \012    unless ($global_program_name == $MOVE_BLOCK_PROGRAM_NAME_ZERO) {\012      die \"Wrong\";\012    }\012    \012    unless ($global_argv == $MOVE_BLOCK_ARGV_ZERO) {\012      die \"Wrong\";\012    }\012    \012    my $base_time = CommandInfo->BASE_TIME;\012    \012    my $base_time_ok = 0;\012    if ($base_time > 0) {\012      $base_time_ok = 1;\012    }\012    \012    print \"AAA $program_name $sum $ret1 $ret2 $ret3 $argv->[0] $argv->[1] $base_time_ok\\n\";\012  }\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 1342);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "MyExe::Precompile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "MyExe::Precompile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "MyExe/Precompile.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class MyExe::Precompile : precompile {\012  static method sum : int ($num1 : int, $num2 : int) {\012    return $num1 + $num2;\012  }\012  \012  static method anon_method_sum : int () {\012    my $num1 = &anon_method0();\012    my $num2 = &anon_method1();\012    \012    return $num1 + $num2;\012  }\012  \012  static method anon_method0 : int () {\012    \012    my $cb = method : int () { return 2; };\012    \012    return $cb->();\012  }\012  \012  static method anon_method1 : int () {\012    \012    my $cb = method : int () { return 5; };\012    \012    return $cb->();\012  }\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 513);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->compiler->add_class_file(compiler, "TestCase::NativeAPI2");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "TestCase::NativeAPI2");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "TestCase/NativeAPI2.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content(compiler, class_file, "class TestCase::NativeAPI2 : precompile {\012  static method spvm_extension2 : int () {\012    my $total = &mul(5, 3);\012    \012    if ($total == 15) {\012      return 1;\012    }\012    \012    return 0;\012  }\012\012  native static method mul : int ($num1 : int, $num2 : int);\012\012  native static method src_foo : int ();\012\012  native static method src_bar : int ();\012\012  native static method mylib2_source1_func1 : string ();\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 393);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->api->compiler->set_start_file(compiler, __FILE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  env->api->compiler->set_start_line(compiler, __LINE__ + 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  int32_t error_id = env->api->compiler->compile(compiler, "MyExe");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  void* runtime = env->api->compiler->get_runtime(compiler);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExe.boot.c:    fprintf(spvm_stderr, "[Unexpected Compile Error]%s.", env->api->compiler->get_error_message(compiler, 0));
t/04_spvmcc/.spvm_build/work/src/SPVM/TestCase/NativeAPI2.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/TestCase/NativeAPI2.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/TestCase/NativeAPI2.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/TestCase/NativeAPI2.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/TestCase/NativeAPI2.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:env->api->method->set_precompile_address(env->runtime, method, precompile_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->api->method->set_native_address(env->runtime, method, native_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->runtime = runtime;
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  SPVM_VALUE* stack = env->new_stack(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* obj_program_name = env->new_string(env, stack, command_args[0], strlen(command_args[0]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* obj_argv = env->new_string_array(env, stack, command_args_length - 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:      void* obj_arg = env->new_string(env, stack, command_args[arg_index], strlen(command_args[arg_index]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:      env->set_elem_object(env, stack, obj_argv, arg_index - 1, obj_arg);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:      error_id = env->set_command_info_program_name(env, stack, obj_program_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:        env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:        error_id = env->set_command_info_argv(env, stack, obj_argv);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:          error_id = env->set_command_info_base_time(env, stack, base_time);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:            env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->leave_scope(env, stack, mortal_stack_top);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    error_id = env->check_bootstrap_method(env, stack, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:      env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:      error_id = env->call_init_methods(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:        void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:        void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:        error_id = env->call_method(env, stack, method, args_width);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->print_stderr(env, stack, env->get_exception(env, stack));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->destroy_class_vars(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->free_stack(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->free_env(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Byte.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Byte {\012  has value : ro byte;\012  static method new : Byte ($value : int) {\012    my $self = new Byte;\012    $self->{value} = (byte)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Short.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Short {\012  has value : ro short;\012  static method new : Short ($value : int) {\012    my $self = new Short;\012    $self->{value} = (short)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Int.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Int {\012  has value : ro int;\012  static method new : Int ($value : int) {\012    my $self = new Int;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 153);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Long.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Long {\012  has value : ro long;\012  static method new : Long ($value : long) {\012    my $self = new Long;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 158);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Float.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Float {\012  has value : ro float;\012  static method new : Float ($value : float) {\012    my $self = new Float;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Double.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Double {\012  has value : ro double;\012  static method new : Double ($value : double) {\012    my $self = new Double;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Bool.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Bool {\012  INIT {\012    $TRUE = new Bool;\012    $TRUE->{value} = 1;\012    $FALSE = new Bool;\012    $FALSE->{value} = 0;\012  }\012  \012  our $TRUE : ro Bool;\012  our $FALSE : ro Bool;\012  has value : ro int;\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 193);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 12);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/System.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::System extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 34);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/NotSupported.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::NotSupported extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 40);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "CommandInfo.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class CommandInfo {\012  our $PROGRAM_NAME : ro string;\012  our $ARGV : ro string[];\012  our $BASE_TIME : ro long;\012  }");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 111);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Address.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Address : pointer {\012  static method new : Address () {\012    my $self = new Address;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 112);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/Compile.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::Compile extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 35);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->compiler->add_class_file(compiler, "MyExeCompileError::MainInstantMethod");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "MyExeCompileError::MainInstantMethod");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "MyExeCompileError/MainInstantMethod.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content(compiler, class_file, "class MyExeCompileError::MainInstantMethod {\012  method main : int () {\012  }\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 76);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->api->compiler->set_start_file(compiler, __FILE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  env->api->compiler->set_start_line(compiler, __LINE__ + 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  int32_t error_id = env->api->compiler->compile(compiler, "MyExeCompileError::MainInstantMethod");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  void* runtime = env->api->compiler->get_runtime(compiler);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainInstantMethod.boot.c:    fprintf(spvm_stderr, "[Unexpected Compile Error]%s.", env->api->compiler->get_error_message(compiler, 0));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:env->api->method->set_precompile_address(env->runtime, method, precompile_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->api->method->set_native_address(env->runtime, method, native_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->runtime = runtime;
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  SPVM_VALUE* stack = env->new_stack(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* obj_program_name = env->new_string(env, stack, command_args[0], strlen(command_args[0]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* obj_argv = env->new_string_array(env, stack, command_args_length - 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:      void* obj_arg = env->new_string(env, stack, command_args[arg_index], strlen(command_args[arg_index]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:      env->set_elem_object(env, stack, obj_argv, arg_index - 1, obj_arg);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:      error_id = env->set_command_info_program_name(env, stack, obj_program_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:        env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:        error_id = env->set_command_info_argv(env, stack, obj_argv);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:          error_id = env->set_command_info_base_time(env, stack, base_time);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:            env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->leave_scope(env, stack, mortal_stack_top);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    error_id = env->check_bootstrap_method(env, stack, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:      env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:      error_id = env->call_init_methods(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:        void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:        void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:        error_id = env->call_method(env, stack, method, args_width);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->print_stderr(env, stack, env->get_exception(env, stack));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->destroy_class_vars(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->free_stack(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->free_env(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Byte.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Byte {\012  has value : ro byte;\012  static method new : Byte ($value : int) {\012    my $self = new Byte;\012    $self->{value} = (byte)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Short.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Short {\012  has value : ro short;\012  static method new : Short ($value : int) {\012    my $self = new Short;\012    $self->{value} = (short)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Int.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Int {\012  has value : ro int;\012  static method new : Int ($value : int) {\012    my $self = new Int;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 153);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Long.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Long {\012  has value : ro long;\012  static method new : Long ($value : long) {\012    my $self = new Long;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 158);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Float.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Float {\012  has value : ro float;\012  static method new : Float ($value : float) {\012    my $self = new Float;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Double.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Double {\012  has value : ro double;\012  static method new : Double ($value : double) {\012    my $self = new Double;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Bool.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Bool {\012  INIT {\012    $TRUE = new Bool;\012    $TRUE->{value} = 1;\012    $FALSE = new Bool;\012    $FALSE->{value} = 0;\012  }\012  \012  our $TRUE : ro Bool;\012  our $FALSE : ro Bool;\012  has value : ro int;\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 193);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 12);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/System.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::System extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 34);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/NotSupported.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::NotSupported extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 40);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "CommandInfo.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class CommandInfo {\012  our $PROGRAM_NAME : ro string;\012  our $ARGV : ro string[];\012  our $BASE_TIME : ro long;\012  }");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 111);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Address.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Address : pointer {\012  static method new : Address () {\012    my $self = new Address;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 112);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/Compile.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::Compile extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 35);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->compiler->add_class_file(compiler, "MyExeCompileError::MainHasArguments");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "MyExeCompileError::MainHasArguments");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "MyExeCompileError/MainHasArguments.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content(compiler, class_file, "class MyExeCompileError::MainHasArguments {\012  static method main : int ($argv : string[]) {\012  }\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 98);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->api->compiler->set_start_file(compiler, __FILE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  env->api->compiler->set_start_line(compiler, __LINE__ + 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  int32_t error_id = env->api->compiler->compile(compiler, "MyExeCompileError::MainHasArguments");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  void* runtime = env->api->compiler->get_runtime(compiler);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainHasArguments.boot.c:    fprintf(spvm_stderr, "[Unexpected Compile Error]%s.", env->api->compiler->get_error_message(compiler, 0));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:env->api->method->set_precompile_address(env->runtime, method, precompile_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, method_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->api->method->set_native_address(env->runtime, method, native_address);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->runtime = runtime;
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  SPVM_VALUE* stack = env->new_stack(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* obj_program_name = env->new_string(env, stack, command_args[0], strlen(command_args[0]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* obj_argv = env->new_string_array(env, stack, command_args_length - 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:      void* obj_arg = env->new_string(env, stack, command_args[arg_index], strlen(command_args[arg_index]));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:      env->set_elem_object(env, stack, obj_argv, arg_index - 1, obj_arg);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:      error_id = env->set_command_info_program_name(env, stack, obj_program_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:        env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:        error_id = env->set_command_info_argv(env, stack, obj_argv);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:          error_id = env->set_command_info_base_time(env, stack, base_time);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:            env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->leave_scope(env, stack, mortal_stack_top);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    error_id = env->check_bootstrap_method(env, stack, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:      env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:      error_id = env->call_init_methods(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:        void* class_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, class_name);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:        void* method = env->api->basic_type->get_method_by_name(env->runtime, class_basic_type, "main");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:        error_id = env->call_method(env, stack, method, args_width);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:          env->die(env, stack, env->get_chars(env, stack, env->get_exception(env, stack)), __func__, __FILE__, __LINE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->print_stderr(env, stack, env->get_exception(env, stack));
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->destroy_class_vars(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->free_stack(env, stack);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->free_env(env);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Byte");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Byte.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Byte {\012  has value : ro byte;\012  static method new : Byte ($value : int) {\012    my $self = new Byte;\012    $self->{value} = (byte)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Short");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Short.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Short {\012  has value : ro short;\012  static method new : Short ($value : int) {\012    my $self = new Short;\012    $self->{value} = (short)$value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Int");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Int.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Int {\012  has value : ro int;\012  static method new : Int ($value : int) {\012    my $self = new Int;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 153);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Long");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Long.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Long {\012  has value : ro long;\012  static method new : Long ($value : long) {\012    my $self = new Long;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 158);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Float");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Float.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Float {\012  has value : ro float;\012  static method new : Float ($value : float) {\012    my $self = new Float;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 163);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Double");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Double.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Double {\012  has value : ro double;\012  static method new : Double ($value : double) {\012    my $self = new Double;\012    $self->{value} = $value;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 168);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Bool");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Bool.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Bool {\012  INIT {\012    $TRUE = new Bool;\012    $TRUE->{value} = 1;\012    $FALSE = new Bool;\012    $FALSE->{value} = 0;\012  }\012  \012  our $TRUE : ro Bool;\012  our $FALSE : ro Bool;\012  has value : ro int;\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 193);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 12);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::System");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/System.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::System extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 34);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::NotSupported");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/NotSupported.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::NotSupported extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 40);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "CommandInfo");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "CommandInfo.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class CommandInfo {\012  our $PROGRAM_NAME : ro string;\012  our $ARGV : ro string[];\012  our $BASE_TIME : ro long;\012  }");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 111);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Address");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Address.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Address : pointer {\012  static method new : Address () {\012    my $self = new Address;\012    return $self;\012  }\012}");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 112);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "Error::Compile");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "Error/Compile.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class Error::Compile extends Error;");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 35);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->compiler->add_class_file(compiler, "MyExeCompileError::MainNotFound");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    void* class_file = env->api->compiler->get_class_file(compiler, "MyExeCompileError::MainNotFound");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_rel_file(compiler, class_file, "MyExeCompileError/MainNotFound.spvm");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content(compiler, class_file, "class MyExeCompileError::MainNotFound {\012}\012");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    env->api->class_file->set_content_length(compiler, class_file, 42);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->api->compiler->set_start_file(compiler, __FILE__);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  env->api->compiler->set_start_line(compiler, __LINE__ + 1);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  int32_t error_id = env->api->compiler->compile(compiler, "MyExeCompileError::MainNotFound");
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  void* runtime = env->api->compiler->get_runtime(compiler);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(runtime);
t/04_spvmcc/.spvm_build/work/src/SPVM/MyExeCompileError/MainNotFound.boot.c:    fprintf(spvm_stderr, "[Unexpected Compile Error]%s.", env->api->compiler->get_error_message(compiler, 0));
Binary file t/04_spvmcc/.spvm_build/work/exe/myexe_runtime_error matches
Binary file t/04_spvmcc/.spvm_build/work/exe/myexe_solo matches
Binary file t/04_spvmcc/.spvm_build/work/exe/myexe matches
Binary file t/04_spvmcc/.spvm_build/work/object/spvm_precompile.o matches
t/04_spvmcc/lib/SPVM/TestCase/NativeAPI2.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/06_native_api/native_api.t:# env->call_method_no_mortal
t/03_precompile/06_native_api/native_api.t:# env->call_method
t/03_precompile/06_native_api/native_api.t:# env->call_class_method_by_name
t/03_precompile/06_native_api/native_api.t:# env->call_instance_method_static_by_name
t/03_precompile/06_native_api/native_api.t:# env->call_instance_method_by_name
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/MyMath.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 663));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 663));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 615));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 617));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 567));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 358));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 358));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 702));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 708));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SpecialAssign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/188/17.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/188/17.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/188/17.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/188/17.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/159/82.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method/anon/202/17.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PointForTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 302));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 691));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 623));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 507));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 600));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 734));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 741));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 743));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1039));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1041));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1043));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1053));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1053));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1061));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1062));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1062));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1063));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1066));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1066));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1067));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1069));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 775));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 991));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1001));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1001));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1007));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1007));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1014));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 807));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 824));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 824));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 829));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 831));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 832));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 832));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 791));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 791));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 793));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 793));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 793));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 859));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 950));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 950));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 951));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 951));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 965));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 965));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 968));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 972));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1088));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1089));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1092));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Increment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Enum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Ref.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Subtract.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inheritance.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeComment.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception/anon/191/33.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FatCamma.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa/anon/257/21.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa/anon/257/21.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa/anon/257/21.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa/anon/257/21.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow/PrivateData.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow/PrivateData.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow/PrivateData.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Allow/PrivateData.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 396));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Weaken.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryPlus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Util/Thread.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Add.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Examples.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Examples.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Examples.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Examples.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Examples.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ModuleContainsMultiClass.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CompileTypeName.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Field.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINERN.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINERN.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINERN.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINERN.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeCast.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Move.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Constant.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Switch.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ArrayMiddleSize.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Error.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Immutable/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Float.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 811));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 951));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1032));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1062));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1088));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/35/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Scope/Guard/anon/11/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Short.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/IntList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringBuffer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/1282/29.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/431/49.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/4914/22.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5014));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5014));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array/anon/5012/79.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Byte.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Double.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ByteList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 567));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 615));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 617));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5034));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5034));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5059));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5059));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5066));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5067));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5069));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5079));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5080));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5081));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5092));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5096));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5096));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5096));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 663));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 743));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 743));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 773));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 774));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 784));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 829));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 867));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 944));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 968));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 983));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1007));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1030));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1032));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1081));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1573));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1615));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1623));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1726));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1734));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1747));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1773));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1791));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1890));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1911));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1938));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1968));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1975));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1976));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1977));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1983));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1995));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2001));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2010));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2039));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2040));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2059));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2067));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2069));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2088));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2089));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2096));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2567));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2713));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2741));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2750));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2751));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2775));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2807));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2841));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2859));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2972));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2988));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2991));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3028));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3035));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3066));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3067));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3074));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3081));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3082));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3082));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3082));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3082));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3092));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3099));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3302));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3600));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3747));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3775));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3942));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3944));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3951));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3995));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4007));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4024));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4034));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4035));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4041));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4043));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4052));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4053));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4068));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4069));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4070));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4080));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4086));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4094));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4096));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4747));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4708));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4896));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4829));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5811));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4448));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4977));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4977));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4977));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4938));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5734));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5752));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5752));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5708));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5708));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5396));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5396));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5014));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5014));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Array.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 750));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 752));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 754));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 773));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 774));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 775));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 784));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 784));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 802));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 824));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 830));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 840));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 840));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 848));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 900));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 448));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 632));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 645));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/List.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Int.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/CommandInfo.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/DoubleList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 348));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Format.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1247/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1247/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1247/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1247/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1273/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1273/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1273/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1273/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/618/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/618/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/618/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/618/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/269/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/269/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/269/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/269/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1234/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1234/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1234/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1234/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1136/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1136/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1136/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1136/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/631/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/631/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/631/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/631/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/319/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/319/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/319/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/319/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/33/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/33/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/33/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/33/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/729/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/729/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/729/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/729/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1173/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1173/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1173/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1173/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1002/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/195/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/195/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/195/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/195/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/607/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/607/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/607/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/607/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/901/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/434/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/434/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/434/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/434/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1073/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1073/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1073/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1073/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/884/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/972/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/935/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/220/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/220/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/220/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/220/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1112/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1112/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1112/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1112/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1099/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1099/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1099/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1099/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1123/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1123/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1123/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1123/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/742/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/742/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/742/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/742/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/233/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/233/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/233/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/233/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1360/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1360/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1360/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1360/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/543/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/543/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/543/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/543/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1047/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1047/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1047/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1047/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/458/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/458/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/458/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/458/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/768/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/768/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/768/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/768/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/282/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/282/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/282/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/282/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/258/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/258/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/258/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/258/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/245/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/245/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/245/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/245/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/668/33.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/668/33.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/668/33.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/668/33.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1028/36.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1029));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/594/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/594/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/594/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/594/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/408/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/408/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/408/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/408/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/931/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/831/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/831/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/831/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/831/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1260/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1260/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1260/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1260/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/880/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/495/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/495/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/495/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/495/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/794/33.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/794/33.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/794/33.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/794/33.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/369/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/369/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/369/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/369/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/965/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/947/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/716/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/716/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/716/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/716/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/954/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/897/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 898));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/445/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/445/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/445/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/445/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/295/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/295/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/295/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/295/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/85/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/85/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/85/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/85/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/96/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/96/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/96/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/96/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1297/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1297/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1297/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1297/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/146/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/146/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/146/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/146/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/781/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/781/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/781/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/781/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1221/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1221/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1221/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1221/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1086/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1086/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1086/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1086/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1060/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1060/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1060/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1060/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/471/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/471/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/471/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/471/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/72/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/72/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/72/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/72/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/914/32.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/207/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/207/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/207/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/207/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/382/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/382/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/382/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/382/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/988/35.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/807/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/807/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/807/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/807/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/755/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/755/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/755/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/755/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/581/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/581/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/581/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/581/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/59/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/59/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/59/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/59/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/568/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/568/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/568/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/568/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/644/33.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/644/33.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/644/33.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/644/33.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1286/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1286/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1286/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1286/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1310/32.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1310/32.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1310/32.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1310/32.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1323/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1323/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1323/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1323/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/555/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/555/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/555/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/555/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/918/113.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/20/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/20/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/20/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/20/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/122/34.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/122/34.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/122/34.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/122/34.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/109/33.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/109/33.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/109/33.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/109/33.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1149/35.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1149/35.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1149/35.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1149/35.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/421/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/421/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/421/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/421/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/395/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/395/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/395/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/395/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1336/36.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1336/36.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1336/36.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/1336/36.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/46/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/46/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/46/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sort/anon/46/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/LongList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/ShortList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/168/74.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/40/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/107/45.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/149/73.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/67/86.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/50/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/119/46.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Sync/Mutex/anon/81/87.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4857/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4857/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4857/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4857/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4857/30.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4845/48.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4481/58.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4820/31.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4820/31.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4820/31.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4820/31.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4455/63.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4803/49.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4803/49.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4803/49.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4803/49.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4803/49.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4882/55.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4894/37.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4894/37.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4894/37.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4894/37.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn/anon/4894/37.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 831));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 841));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 940));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 942));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1031));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 976));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 978));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 991));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 995));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/Compiler.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/827/8.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/827/8.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/827/8.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/827/8.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/827/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/886/30.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/853/8.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/853/8.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/853/8.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/853/8.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/853/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 921));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Native/MethodCall/anon/920/8.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 623));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 751));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 839));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 881));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 930));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 932));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4918));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4960));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 995));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1007));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1010));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1031));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1052));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1091));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1359));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1713));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1713));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1879));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1935));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1942));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1957));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2086));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2086));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2086));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2086));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2088));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4865));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2302));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2325));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2434));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2474));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4702));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4750));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2617));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2664));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2710));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2904));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2937));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2945));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2972));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2983));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3035));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3081));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3092));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3092));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3099));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 2996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3938));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3465));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3597));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3673));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3714));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3792));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3802));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3867));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3920));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3452));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3965));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3976));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3987));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 3999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4010));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4057));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4066));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4083));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4846));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Fn.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Long.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 864));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 866));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 700));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 712));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 678));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 623));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 573));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 976));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 988));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 988));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1009));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1011));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1024));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1032));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1032));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1033));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1035));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1039));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1041));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1041));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1041));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1063));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1067));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1085));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1089));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1095));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1097));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 359));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 791));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 751));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 774));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 529));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 743));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 435));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 448));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 886));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 899));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 941));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 949));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 952));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 811));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 812));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 827));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 831));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Hash.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 760));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 769));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 388));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 438));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 453));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 462));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 640));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 697));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 699));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 730));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 803));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/FloatList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 11));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 123));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 328));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 339));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 393));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 432));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 447));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 458));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 459));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 478));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 507));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 586));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 592));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 676));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 696));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 722));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/StringList.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 728));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Bool.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Module/Point3D.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/For.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion/anon/69/21.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion/anon/69/21.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion/anon/69/21.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion/anon/69/21.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Init.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/While.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NumericOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 360));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Interface.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Stdio.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 199));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Dump.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/99/89.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/49/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 90));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/87/88.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/37/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/14/70.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ThreadSafe/anon/22/71.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 814));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 802));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 975));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ComparisonOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 662));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 687));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 625));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 630));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 600));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 589));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 418));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 430));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 448));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 364));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 383));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 89));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 470));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 473));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Array.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 587));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 476));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 477));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 468));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 450));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 507));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 437));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 441));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 214));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 92));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 593));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Assign.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 46));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 116));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 215));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 333));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Object.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Copy.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Mulnum.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Destructor/ExceptionNotOverride.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Return.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UnaryMinus.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BasicTypeId.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IfRequire.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SymbolName_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SymbolName_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SymbolName_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/SymbolName_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Comment/LF.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Comment/LF.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Comment/LF.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Comment/LF.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Precedence.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType/anon/39/29.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType/anon/39/29.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType/anon/39/29.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType/anon/39/29.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsCompileType/anon/39/29.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/If.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 590));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 655));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1357));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 81));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 83));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 86));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 719));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 734));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 734));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 735));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 807));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 792));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 793));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 794));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1315));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1239));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1257));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1206));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1021));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1023));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1024));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1026));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1128));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1129));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1071));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1072));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1073));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1074));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1076));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1077));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1078));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1079));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1080));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1098));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1098));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1099));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1045));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1048));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1052));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1053));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 887));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 890));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 890));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 851));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 852));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 853));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 747));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 749));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 750));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 428));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 396));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 403));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 944));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 944));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 994));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 983));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 974));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ExchangeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/BitOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1413));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1205));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1125));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1089));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1352));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 272));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 218));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 337));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 810));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 811));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 811));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 820));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 823));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 930));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 940));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 941));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 941));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 917));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 919));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 859));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 859));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 868));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 869));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 882));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 883));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 885));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 892));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 955));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 958));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 965));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 969));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 834));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 835));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 844));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 847));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1047));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1049));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1050));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1052));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1053));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1054));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1055));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1056));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1059));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1060));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1061));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1062));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1063));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1064));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 610));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 596));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 349));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 351));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 361));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 444));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 620));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 635));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 770));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 679));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 688));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 690));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 702));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 706));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 783));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 663));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/NativeAPI.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FILE.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FILE.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FILE.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FILE.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/FILE.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 8));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Print.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 316));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);  type_dimension = 0;
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 345));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Isa.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Seqop.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Seqop.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Seqop.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Seqop.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Multiply.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 982));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 983));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1031));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1031));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1032));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1034));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1022));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1023));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1002));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1003));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1012));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1015));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 992));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 993));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 995));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 850));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 772));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 972));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 972));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 973));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 975));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 915));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 833));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 963));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 901));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 943));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 944));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 875));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 953));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 956));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 884));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 813));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 934));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 936));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 858));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 862));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1080));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1084));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1090));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1094));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 41));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 104));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/TypeConversion.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InterfaceNoRequiredMethodTest.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 4));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Concat.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Say.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINEN.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINEN.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINEN.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINEN.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InitStatement.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InitStatement.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InitStatement.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/InitStatement.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 208));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 224));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Modulo.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/CURRENT_CLASS_NAME/anon/11/43.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Heredoc.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Heredoc.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Heredoc.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Heredoc.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 105));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 113));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 314));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 318));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 330));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 334));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 342));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 354));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 358));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 362));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 366));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 378));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 398));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 449));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 136));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 200));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 242));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 282));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 297));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 480));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 481));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 484));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 489));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 494));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 499));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 504));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 507));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 509));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 514));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 519));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 524));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 534));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 539));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 544));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 546));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 548));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 550));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 551));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 553));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 554));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 556));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 557));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 559));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 560));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 562));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 563));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 565));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 566));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 567));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 568));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 569));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 572));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 573));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 575));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 577));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 578));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 580));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 581));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 583));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 584));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 741));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 751));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 771));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 791));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 467));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 598));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 666));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 672));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 691));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 691));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/String.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 711));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/StringSingleQuote.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 6));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Character.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Undef.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Undef.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Undef.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Undef.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Undef.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 5));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/FloatingPoint.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 292));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Literal/Integer.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 248));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 250));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 93));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 191));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 220));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Divide.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Unless.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod1.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/ImplementAnonMethod2.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/205/15.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/205/15.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/205/15.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/205/15.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/78/52.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/192/42.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/64/52.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/36/76.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/96/54.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/260/15.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/231/15.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/50/80.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/243/15.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/20/84.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod/anon/130/23.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 7));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LineDirective.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 720));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 721));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 723));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 724));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 725));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 727));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 816));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 817));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 818));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 819));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 822));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 824));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 826));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 828));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 836));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 837));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 838));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 839));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 839));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 841));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 842));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 845));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 922));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 923));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 924));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 925));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 927));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 928));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 929));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 931));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 905));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 906));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 907));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 908));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 910));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 911));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 912));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 914));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 871));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 872));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 873));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 874));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 876));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 878));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 880));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 889));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 890));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 890));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 891));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 893));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 894));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 897));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 854));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 855));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 857));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 859));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 860));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 861));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 796));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 798));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 802));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 802));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 804));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 805));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 806));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 808));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 758));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 759));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 761));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 762));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 768));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 776));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 778));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 782));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 784));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 785));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 786));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 736));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 738));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 741));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 744));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 745));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 746));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 939));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 940));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 940));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 941));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 941));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 942));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 942));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 946));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 948));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 950));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 950));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 950));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1035));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1036));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1038));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1042));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1043));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1046));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1016));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1017));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1018));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1019));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1023));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1024));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1025));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 978));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 979));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 980));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 981));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 985));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 986));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 987));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 989));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 997));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 998));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 999));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1000));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1004));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1005));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1008));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 959));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 960));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 960));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 961));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 962));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 966));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 967));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 968));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 970));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 30));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 33));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 34));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 42));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 47));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 54));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 55));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 58));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 59));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 63));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 65));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 67));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 68));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 69));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 73));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 75));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 77));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 82));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 91));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 599));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 601));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 602));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 603));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 604));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 607));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 608));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 609));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 611));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 612));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 613));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 614));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 617));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 618));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 619));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 621));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 623));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 624));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 626));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 631));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 632));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 633));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 634));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 637));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 641));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 642));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 644));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 646));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 647));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 648));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 652));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 653));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 654));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 656));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 658));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 665));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 671));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 674));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 677));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 680));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 686));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 689));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 698));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 701));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 704));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 483));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 485));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 486));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 487));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 490));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 492));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 496));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 498));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 501));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 503));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 505));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 506));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 507));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 508));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 510));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 511));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 512));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 513));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 516));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 517));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 520));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 522));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 523));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 525));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 526));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 527));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 528));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 531));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 532));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 535));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 537));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 538));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 540));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 541));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 542));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 543));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 545));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 549));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 552));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 555));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 558));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 561));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 564));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 567));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 570));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 573));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 576));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 579));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 582));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 585));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 588));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 591));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 251));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 255));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 256));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 259));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 263));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 266));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 268));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 273));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 274));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 276));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 279));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 280));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 283));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 291));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 293));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 294));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 295));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 296));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 304));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 305));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 308));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 309));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 310));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 311));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 320));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 326));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 332));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 335));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 338));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 347));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 350));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 356));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 359));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 380));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 381));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 382));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 384));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 385));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 386));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 387));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 389));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 394));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 395));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 396));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 397));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 399));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 400));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 401));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 402));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 404));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 405));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 406));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 409));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 410));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 411));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 412));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 414));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 415));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 416));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 417));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 419));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 420));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 421));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 422));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 425));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 426));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 427));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 433));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 436));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 442));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 445));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 448));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 451));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 454));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 457));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 460));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 463));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 466));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 469));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 475));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 143));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 144));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 155));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 163));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 164));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 179));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 180));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 182));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 187));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 197));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 207));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 213));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 222));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 228));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 240));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/MulnumArray.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 243));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 71));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 84));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 167));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 168));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 170));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 173));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 190));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 235));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 237));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 264));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 265));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 148));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 156));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 158));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 117));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 119));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 120));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 38));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 66));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 80));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 131));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 132));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 134));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 193));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 233));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 245));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 261));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 262));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/AnonMethod.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1622));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1629));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1636));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1643));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1651));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1675));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1695));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1703));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 45));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 53));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 61));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 70));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 521));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 530));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 800));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 801));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 595));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 594));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 650));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 649));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 639));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 638));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 617));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 616));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 815));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 628));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 627));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 502));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 657));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 659));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 660));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 661));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 667));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 668));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 669));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 670));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 779));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 780));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 781));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 787));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 788));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 789));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 790));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 755));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 756));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 763));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 764));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 765));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 766));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 705));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 707));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 708));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 709));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 715));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 717));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 729));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 731));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 732));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 739));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 740));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 741));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 742));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 683));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 684));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 685));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 691));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 692));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 693));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 694));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 606));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 605));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1716));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1718));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 491));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 493));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 495));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 488));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 210));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 159));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1301));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1302));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 455));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 456));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 439));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 440));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 407));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 408));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 423));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 424));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 471));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 472));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 391));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1733));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1737));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1753));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1757));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1773));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1777));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1793));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1795));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1797));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1799));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1807));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1809));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1821));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1825));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1841));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1843));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 849));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 856));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 863));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 870));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 877));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 888));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 895));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 902));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 909));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 916));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 926));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 933));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 940));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 947));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 954));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 964));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 971));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 978));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 984));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 990));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 996));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1006));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1013));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1020));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1027));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1037));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1044));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1051));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1058));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1065));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1075));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1081));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1087));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1093));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1106));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1109));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1114));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1118));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1121));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1127));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1130));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1138));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1139));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1142));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1166));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1172));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1198));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1194));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 363));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 133));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 140));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 147));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 229));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 231));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 221));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 344));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 346));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 336));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 321));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 313));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 277));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 300));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 290));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 254));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 244));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1317));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1319));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1377));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1365));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1367));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1341));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1343));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1353));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1355));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1443));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1446));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1533));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1536));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1515));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1518));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1479));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1482));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1497));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1500));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1571));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1574));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1461));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1464));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1390));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1392));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1429));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1431));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1329));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 1331));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 204));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 246));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  src_basic_type = env->api->runtime->get_basic_type_by_id(env->runtime, src_basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 146));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 171));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 183));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 196));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/IsType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 226));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Alias.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 27));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 39));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 107));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/ClassVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 201));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 203));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 209));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 211));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 217));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 219));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 225));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 227));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 236));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 238));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 241));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 247));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 252));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 258));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 260));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 269));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 281));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 284));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 288));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 299));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 302));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 306));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 195));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 141));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 161));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 153));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 145));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 169));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 29));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 36));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 43));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 50));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 57));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 79));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 108));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 115));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Exception.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 111));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 122));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 184));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 192));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 202));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 232));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 270));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 278));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 287));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LocalVar.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 298));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINER.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINER.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINER.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LINER.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 212));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 216));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 230));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 234));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 249));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 253));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 267));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 271));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 285));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 289));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 303));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 307));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 312));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 322));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 323));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 324));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 327));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 26));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 35));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 37));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 49));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 51));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 62));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 74));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 76));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 85));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 87));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 99));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 101));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 110));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 112));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 124));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 126));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 135));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 149));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 177));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 185));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 186));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 188));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 12));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 14));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Accessor.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 13));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Inline.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/Warn.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 9));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib2.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 25));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Mylib1.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 32));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 10));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/UseResource/Basic.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 31));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 152));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 154));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 157));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 165));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 174));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 175));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 176));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 178));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 181));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 189));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 286));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 368));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 369));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 370));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 371));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 372));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 373));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 374));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 375));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 376));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 379));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 681));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 547));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 223));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 340));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase/LogicalOperator.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 748));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 94));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 95));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 96));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 97));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 98));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 100));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 102));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 103));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 160));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 162));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 72));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  basic_type_id = env->api->basic_type->get_id(env->runtime, basic_type);  SPVM_IMPLEMENT_SET_ERROR_ID(error_id, basic_type_id);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 78));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 137));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 40));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 44));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 64));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 60));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 52));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 56));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 48));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 28));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 88));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 275));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 24));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 150));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 151));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 22));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 20));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 19));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 17));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 21));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 18));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 16));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 23));
t/03_precompile/.spvm_build/work/src/SPVM/TestCase.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/03_precompile/.spvm_build/work/src/SPVM/MinimalMethod.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/03_precompile/.spvm_build/work/src/SPVM/MinimalMethod.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/03_precompile/.spvm_build/work/src/SPVM/MinimalMethod.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/03_precompile/.spvm_build/work/src/SPVM/MinimalMethod.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  std::thread::id* thread_id = (std::thread::id*)env->new_memory_block(env, stack, sizeof(std::thread::id));
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  void* obj_thread_id = env->new_object_by_name(env, stack, "TestCase::Util::Thread::ID", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  env->set_pointer(env, stack, obj_thread_id, (void*)thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/03_precompile/lib/SPVM/TestCase/Util/Thread/ID.cpp:  env->free_memory_block(env, stack, thread_id);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  SPVM_VALUE* stack = env->new_stack(env);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  env->call_instance_method_by_name(env, stack, "", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    void* obj_exception = env->get_exception(env, stack);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    const char* exception = env->get_chars(env, stack, obj_exception);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    env->set_field_object_by_name(env, stack, obj_self, "exception", obj_exception, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    env->set_field_int_by_name(env, stack, obj_self, "error_id", error_id, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  env->free_stack(env, stack);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  void* obj_task = env->get_field_object_by_name(env, stack, obj_self, "task", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->new_memory_block(env, stack, sizeof(std::thread));
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  env->set_pointer(env, stack, obj_self, nt_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    env->die(env, stack, "[System Error]join failed:%s", cpp_exception.what(), __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:    env->die(env, stack, "[System Error]detach failed:%s", cpp_exception.what(), __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  env->free_memory_block(env, stack, nt_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread::id* thread_id = (std::thread::id*)env->new_memory_block(env, stack, sizeof(std::thread::id));
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  void* obj_thread_id = env->new_object_by_name(env, stack, "TestCase::Util::Thread::ID", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Util/Thread.cpp:  env->set_pointer(env, stack, obj_thread_id, (void*)thread_id);
t/03_precompile/lib/SPVM/TestCase/Module/Native/Compiler.spvm:      my $current_runtime = $current_env->runtime;
t/03_precompile/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/03_precompile/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/03_precompile/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/03_precompile/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = env->new_memory_block(env, stack, sizeof(struct TestCase__Pointer));
t/03_precompile/lib/SPVM/TestCase/Pointer.c:  void* struct_object = env->new_pointer_object_by_name(env, stack, "TestCase::Pointer", pointer, &e, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = (struct TestCase__Pointer*)env->get_pointer(env, stack, self);
t/03_precompile/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = (struct TestCase__Pointer*)env->get_pointer(env, stack, self);
t/03_precompile/lib/SPVM/TestCase/Pointer.c:  env->free_memory_block(env, stack, pointer);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->runtime!= &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api!= &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_env != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_env != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_init_methods != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_program_name != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_argv != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_base_time != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->destroy_class_vars != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->args_width != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type_id != &env_array[11]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type_name != &env_array[12]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_type_dimension != &env_array[13]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type != &env_array[14]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_by_name != &env_array[15]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_by_id != &env_array[16]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_id != &env_array[17]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_id_by_name != &env_array[18]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var != &env_array[19]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_byte != &env_array[20]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_short != &env_array[21]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_int != &env_array[22]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_long != &env_array[23]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_float != &env_array[24]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_double != &env_array[25]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object != &env_array[26]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_string != &env_array[27]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_byte != &env_array[28]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_short != &env_array[29]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_int != &env_array[30]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_long != &env_array[31]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_float != &env_array[32]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_double != &env_array[33]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_object != &env_array[34]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_string != &env_array[35]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object_ref != &env_array[36]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_byte_by_name != &env_array[37]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_short_by_name != &env_array[38]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_int_by_name != &env_array[39]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_long_by_name != &env_array[40]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_float_by_name != &env_array[41]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_double_by_name != &env_array[42]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object_by_name != &env_array[43]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_string_by_name != &env_array[44]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_byte_by_name != &env_array[45]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_short_by_name != &env_array[46]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_int_by_name != &env_array[47]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_long_by_name != &env_array[48]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_float_by_name != &env_array[49]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_double_by_name != &env_array[50]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_object_by_name != &env_array[51]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_string_by_name != &env_array[52]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field != &env_array[53]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_static != &env_array[54]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_byte != &env_array[55]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_short != &env_array[56]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_int != &env_array[57]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_long != &env_array[58]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_float != &env_array[59]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_double != &env_array[60]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object != &env_array[61]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string != &env_array[62]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_byte != &env_array[63]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_short != &env_array[64]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_int != &env_array[65]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_long != &env_array[66]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_float != &env_array[67]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_double != &env_array[68]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_object != &env_array[69]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_string != &env_array[70]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_byte_by_name != &env_array[71]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_short_by_name != &env_array[72]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_int_by_name != &env_array[73]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_long_by_name != &env_array[74]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_float_by_name != &env_array[75]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_double_by_name != &env_array[76]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_by_name != &env_array[77]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string_by_name != &env_array[78]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_byte_by_name != &env_array[79]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_short_by_name != &env_array[80]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_int_by_name != &env_array[81]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_long_by_name != &env_array[82]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_float_by_name != &env_array[83]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_double_by_name != &env_array[84]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_object_by_name != &env_array[85]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_string_by_name != &env_array[86]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string_chars_by_name != &env_array[87]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_method != &env_array[88]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_method != &env_array[89]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_instance_method_static != &env_array[90]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_instance_method != &env_array[91]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_method_no_mortal != &env_array[92]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_method != &env_array[93]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_class_method_by_name != &env_array[94]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_instance_method_static_by_name != &env_array[95]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_instance_method_by_name != &env_array[96]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_no_mortal != &env_array[97]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object != &env_array[98]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_by_name != &env_array[99]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object_no_mortal != &env_array[100]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object != &env_array[101]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object_by_name != &env_array[102]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_pointer != &env_array[103]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_pointer != &env_array[104]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_nolen_no_mortal != &env_array[105]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_nolen != &env_array[106]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_no_mortal != &env_array[107]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string != &env_array[108]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_byte_array_no_mortal != &env_array[109]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_byte_array != &env_array[110]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_short_array_no_mortal != &env_array[111]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_short_array != &env_array[112]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_int_array_no_mortal != &env_array[113]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_int_array != &env_array[114]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_long_array_no_mortal != &env_array[115]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_long_array != &env_array[116]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_float_array_no_mortal != &env_array[117]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_float_array != &env_array[118]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_double_array_no_mortal != &env_array[119]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_double_array != &env_array[120]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array_no_mortal != &env_array[121]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array != &env_array[122]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array_by_name != &env_array[123]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_array != &env_array[124]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array_no_mortal != &env_array[125]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array != &env_array[126]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array_by_name != &env_array[127]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array_no_mortal != &env_array[128]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array != &env_array[129]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array_by_name != &env_array[130]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_no_mortal != &env_array[131]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto != &env_array[132]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->length != &env_array[133]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_byte != &env_array[134]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_short != &env_array[135]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_int != &env_array[136]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_long != &env_array[137]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_float != &env_array[138]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_double != &env_array[139]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_object != &env_array[140]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_string != &env_array[141]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_elem_object != &env_array[142]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_elem_string != &env_array[143]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_chars != &env_array[144]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_bool_object_value != &env_array[145]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->concat_no_mortal != &env_array[146]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->concat != &env_array[147]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->shorten != &env_array[148]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->make_read_only != &env_array[149]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_read_only != &env_array[150]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->print != &env_array[151]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->print_stderr != &env_array[152]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dump_no_mortal != &env_array[153]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dump != &env_array[154]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dumpc != &env_array[155]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->copy_no_mortal != &env_array[156]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->copy != &env_array[157]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_spvm_version_string != &env_array[158]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_spvm_version_number != &env_array[159]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_version_string != &env_array[160]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_version_number != &env_array[161]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->die != &env_array[162]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_exception != &env_array[163]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_exception != &env_array[164]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack_trace_no_mortal != &env_array[165]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack_trace != &env_array[166]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_string != &env_array[167]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_class != &env_array[168]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_pointer_class != &env_array[169]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_array != &env_array[170]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_object_array != &env_array[171]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_numeric_array != &env_array[172]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_mulnum_array != &env_array[173]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isa != &env_array[174]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isa_by_name != &env_array[175]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_type != &env_array[176]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_type_by_name != &env_array[177]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->elem_isa != &env_array[178]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_size != &env_array[179]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_type_name_no_mortal != &env_array[180]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_type_name != &env_array[181]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_compile_type_name_no_mortal != &env_array[182]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_compile_type_name != &env_array[183]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->enter_scope != &env_array[184]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->leave_scope != &env_array[185]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->push_mortal != &env_array[186]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->weaken != &env_array[187]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isweak != &env_array[188]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->unweaken != &env_array[189]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_string != &env_array[190]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_string_nolen != &env_array[191]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror != &env_array[192]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_nolen != &env_array[193]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->reserved194 != &env_array[194]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->reserved195 != &env_array[195]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack != &env_array[196]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_stack != &env_array[197]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_defined_and_has_pointer_by_name != &env_array[198]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_ref != &env_array[199]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_ref_by_name != &env_array[200]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->check_stack_env != &env_array[201]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->assign_object != &env_array[202]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_array_no_mortal != &env_array[203]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_memory_block != &env_array[204]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_memory_block != &env_array[205]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_memory_blocks_count != &env_array[206]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->say != &env_array[207]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->warn != &env_array[208]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stdin != &env_array[209]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stdout != &env_array[210]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stderr != &env_array[211]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->check_bootstrap_method != &env_array[212]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_element_no_mortal != &env_array[213]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_element != &env_array[214]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->allocator;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->allocator->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->allocator->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->arg;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_stack_index != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->basic_type;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_id != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_category != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_parent != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_version_string != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_dir != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_rel_file != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_pointer != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_anon != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_var_by_index != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_var_by_name != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_vars_length != &env_array[11]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_field_by_index != &env_array[12]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_field_by_name != &env_array[13]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_fields_length != &env_array[14]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_method_by_index != &env_array[15]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_method_by_name != &env_array[16]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_methods_length != &env_array[17]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_anon_basic_type_by_index != &env_array[18]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_anon_basic_types_length != &env_array[19]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->has_interface != &env_array[20]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_super_class != &env_array[21]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_file != &env_array[22]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->class_file;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_class_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_file != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_file != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_dir != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_dir != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_rel_file != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_rel_file != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_content != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_content != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_content_length != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_content_length != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->class_var;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_current_basic_type != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->compiler;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_start_line != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->set_start_line != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_start_file != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->set_start_file != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_include_dirs_length != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_include_dir != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->add_include_dir != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->clear_include_dirs != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->add_class_file != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->delete_class_file != &env_array[11]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_class_file != &env_array[12]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->compile != &env_array[13]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_error_message != &env_array[14]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_error_messages_length != &env_array[15]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_runtime != &env_array[16]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->prepend_include_dir != &env_array[17]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->field;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_offset != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_basic_type != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_type_dimension != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_type_flag != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_current_basic_type != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->internal;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->get_ref_count != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->inc_ref_count != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->dec_ref_count != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->leave_scope_local != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->method;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_arg_by_index != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_args_length != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_required_args_length != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_current_basic_type != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_opcode_by_index != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_opcodes_length != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_class_method != &env_array[11]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_anon != &env_array[12]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_native != &env_array[13]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_precompile != &env_array[14]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_enum != &env_array[15]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_byte_vars_width != &env_array[16]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_short_vars_width != &env_array[17]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_int_vars_width != &env_array[18]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_long_vars_width != &env_array[19]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_float_vars_width != &env_array[20]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_double_vars_width != &env_array[21]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_object_vars_width != &env_array[22]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_ref_vars_width != &env_array[23]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_mortal_stack_length != &env_array[24]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_native_address != &env_array[25]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->set_native_address != &env_array[26]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_precompile_address != &env_array[27]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->set_precompile_address != &env_array[28]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->mutex;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->lock != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->unlock != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->reader_lock != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->reader_unlock != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->runtime;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_data_offset != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_ref_count_offset != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_length_offset != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_type_by_id != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_type_by_name != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_types_length != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->build_precompile_class_source != &env_array[6]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->build_precompile_method_source != &env_array[7]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_compiler != &env_array[8]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->set_compiler != &env_array[9]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stdin != &env_array[10]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stdout != &env_array[11]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stderr != &env_array[12]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->string_buffer;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->get_string != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->get_length != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->type;
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->can_assign != &env_array[0]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->get_type_width != &env_array[1]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_object_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_any_object_type != &env_array[3]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_object_array_type != &env_array[4]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_any_object_array_type != &env_array[5]) { stack[0].ival = 0; return 0; }
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  spvm_warnf(env->spvm_stderr(env, stack), "[Test Output]spvm_warnf: %s %d", "aaa", 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  spvm_warnf(env->spvm_stderr(env, stack), "[Test Output]spvm_warnf:Foo");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$INT_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int(env, stack, class_var, INT32_MIN);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$INT_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$LONG_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  long value = env->get_class_var_long(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double(env, stack, class_var);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$INT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$INT_VALUE", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "NotFound", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_pointer_object_by_name(env, stack, "TestCase::NotFound", pointer, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t match = env->is_type(env, stack, object, basic_type, 1);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_byte_by_name(env, stack, object, "byte_value", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_byte_by_name(env, stack, object, "not_found", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_short_by_name(env, stack, object, "short_value", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_short_by_name(env, stack, object, "not_found", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int_by_name(env, stack, object, "int_value", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int_by_name(env, stack, object, "not_found", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_long_by_name(env, stack, object, "long_value", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_long_by_name(env, stack, object, "not_found", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_float_by_name(env, stack, object, "float_value", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_float_by_name(env, stack, object, "not_found", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_double_by_name(env, stack, object, "double_value", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_double_by_name(env, stack, object, "not_found", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->new_object(env, stack, basic_type);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int(env, stack, object_minimal, field_minimal_x, 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_object_by_name(env, stack, object_simple, "object_value", object_minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->new_object(env, stack, basic_type);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int(env, stack, object_minimal, field_minimal_x, 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_object_by_name(env, stack, object_simple, "not_found", object_minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t byte_value = env->get_field_byte_by_name(env, stack, object, "byte_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t byte_value = env->get_field_byte_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t short_value = env->get_field_short_by_name(env, stack, object, "short_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t short_value = env->get_field_short_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t int_value = env->get_field_int_by_name(env, stack, object, "int_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t int_value = env->get_field_int_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int64_t long_value = env->get_field_long_by_name(env, stack, object, "long_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int64_t long_value = env->get_field_long_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float float_value = env->get_field_float_by_name(env, stack, object, "float_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float float_value = env->get_field_float_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double double_value = env->get_field_double_by_name(env, stack, object, "double_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double double_value = env->get_field_double_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->get_field_object_by_name(env, stack, object_simple, "object_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int(env, stack, object_minimal, field_minimal_x);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* string_chars = env->get_field_string_chars_by_name(env, stack, string_chars_simple, "string_value", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* string_chars = env->get_field_string_chars_by_name(env, stack, string_chars_simple, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->get_field_object_by_name(env, stack, object_simple, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int(env, stack, object_minimal, field_minimal_x);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t* bytes = env->get_elems_byte(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_byte");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_field_byte(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_short");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_field_short(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_int");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_field_int(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_long");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_field_long(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_float");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_field_float(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_double");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_field_double(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_field_object(env, stack, test_case, field);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t length = env->length(env, stack, obj_nums1);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums1 = env->get_elems_int(env, stack, obj_nums1);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums2 = env->get_elems_int(env, stack, obj_nums2);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* onums3 = env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums3 = env->get_elems_int(env, stack, onums3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception %s", "ppp.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_byte_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_short_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_long_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_float_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_long_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_string(env, stack, "foo", (int32_t)strlen("foo"));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_object = env->new_object(env, stack, basic_type);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_object);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_object_array(env, stack, basic_type, 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_object_array(env, stack, basic_type, 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Pointer");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_pointer_object(env, stack, basic_type, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t start_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t before_enter_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    before_leave_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->leave_scope(env, stack, mortal_stack_top);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t after_leave_memory_blocks_counts = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "my_value");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t error_id = env->call_method_no_mortal(env, stack, method, args_width);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "Point");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "new");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    error_id = env->call_method(env, stack, method, args_width);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int_by_name(env, stack, obj_point, "x", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t y = env->get_field_int_by_name(env, stack, obj_point, "y", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "my_value", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "NotFound", "foo", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"NotFound\" class is not found.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "not_found", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" method in the \"TestCase::NativeAPI\" class is not found.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "instance_method", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"instance_method\" method in the \"TestCase::NativeAPI\" class must be a class method.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "NotFound", "foo", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"NotFound\" class is not found.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "TestCase::NativeAPI", "not_found", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" method in the \"TestCase::NativeAPI\" class is not found.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "TestCase::NativeAPI", "class_method", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"class_method\" method in the \"TestCase::NativeAPI\" class must be an instance method.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_static_by_name(env, stack, "TestCase::Minimal", "x", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_static_by_name(env, stack, "TestCase::Minimal", "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "new", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_by_name(env, stack, "not_found", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" instance method in the \"TestCase::NativeAPI\" class is not found in the invocant class or its super classes.")) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_by_name(env, stack, "x", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_by_name(env, stack, "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* iarray = env->new_int_array_no_mortal(env, stack, 10);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->push_mortal(env, stack, iarray);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->push_mortal(env, stack, iarray);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->get_instance_method_static(env, stack, "TestCase::Minimal", "x");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->call_method(env, stack, method, args_width);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_bool_object_value(env, stack, bool_object);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 1);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 1) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 4);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, NULL, 4);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, NULL, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 1);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 1) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 4);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, NULL, 4);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, NULL, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen_no_mortal(env, stack, "abc");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen_no_mortal(env, stack, "");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "abc");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t memory_blocks_count_start = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* memory_block = env->new_memory_block(env, stack, sizeof(SPVM_ENV));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start + 1)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->free_memory_block(env, stack, memory_block);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* new_stack = env->new_stack(env);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->free_stack(env, new_stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* new_stack = env->new_stack(env);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t memory_blocks_count_start = env->get_memory_blocks_count(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* memory_block_new_stack = env->new_memory_block(env, new_stack, 8);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, new_stack) == memory_blocks_count_start + 1)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->free_memory_block(env, new_stack, memory_block_new_stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->free_stack(env, new_stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t int_basic_type_id = env->get_basic_type_id(env, stack, "int");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t not_found_basic_type_id = env->get_basic_type_id(env, stack, "NotFoundBasicType");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* strerror_value = env->strerror(env, stack, errno_value, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_strerror_value = env->new_string(env, stack, strerror_value, strlen(strerror_value));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string(env, stack, errno_value, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  spvm_warn("[Test Output]strerr_string:%s", env->get_chars(env, stack, strerror_string_value));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string(env, stack, errno_value, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* strerror_value = env->strerror_nolen(env, stack, errno_value);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_strerror_value = env->new_string(env, stack, strerror_value, strlen(strerror_value));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string_nolen(env, stack, errno_value);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_object_array = env->new_object_array_no_mortal(env, stack, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 2);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_object_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_object_array) == 0)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_object_array) == 2)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->assign_object(env, stack, &referent, obj_object_array);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->assign_object(env, stack, &referent, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_object_array = env->new_object_array(env, stack, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 2);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_object_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_object_array) == 1)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_object_array) == 2)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_string_array = env->new_string_array(env, stack, 2);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_string_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_string_array) == 1)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_string_array) == 2)) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* obj_string_array = env->new_string_array(env, stack, 2);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_elem_object(env, stack, obj_string_array, 0, env->new_string_nolen(env, stack, "abc"));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_elem_object(env, stack, obj_string_array, 1, env->new_string_nolen(env, stack, "def"));
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t args_width = env->args_width(env, stack);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* dumpc = env->dumpc(env, stack, NULL);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stdin = env->api->runtime->get_spvm_stdin(env->runtime);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stdout = env->api->runtime->get_spvm_stdout(env->runtime);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* allocator = env->api->allocator->new_instance();
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string_buffer = env->api->string_buffer->new_instance(allocator, 0);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "get_class_var_byte_by_name");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->api->runtime->build_precompile_method_source(env->runtime, string_buffer, method);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_buffer_value = env->api->string_buffer->get_string(string_buffer);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_buffer_length = env->api->string_buffer->get_length(string_buffer);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->api->string_buffer->free_instance(string_buffer);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    env->api->allocator->free_instance(allocator);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "VALUE0");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t is_enum = env->api->method->is_enum(env->runtime, method);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  void* sv_text = env->get_field_object_by_name(env, stack, sv_self, "text", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t length = env->length(env, stack, sv_text);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* text_chars = env->get_chars(env, stack, sv_text);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "abc");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stdout mode must be _O_BINARY.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDOUT_WINDOWS_BINARY_MODE", stdout_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stderr mode must be _O_BINARY.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDERR_WINDOWS_BINARY_MODE", stderr_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stdin mode must be _O_BINARY.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDIN_WINDOWS_BINARY_MODE", stdin_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "$path must be defined.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* path = env->get_chars(env, stack, obj_path);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "freopen failed.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t stdout_mode_current = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDOUT_WINDOWS_BINARY_MODE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "fclose failed.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "$path must be defined.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  const char* path = env->get_chars(env, stack, obj_path);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "freopen failed.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  int32_t stderr_mode_current = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDERR_WINDOWS_BINARY_MODE", &error_id, __func__, FILE_NAME, __LINE__);
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "fclose failed.");
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stdin(env, stack) == env->api->runtime->get_spvm_stdin(env->runtime))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stdout(env, stack) == env->api->runtime->get_spvm_stdout(env->runtime))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stderr(env, stack) == env->api->runtime->get_spvm_stderr(env->runtime))) {
t/03_precompile/lib/SPVM/TestCase/NativeAPICpp.cpp:  spvm_warnf(env->api->runtime->get_spvm_stderr(env->runtime), "spvm_warnf test: %s %d", "aaa", 3);
t/03_precompile/lib/SPVM/TestCase/NativeAPICpp.cpp:  spvm_warnf(env->api->runtime->get_spvm_stderr(env->runtime), "spvm_warnf test:Foo");
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib2.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib2.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/03_precompile/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/06_native_api/native_api.t:# env->call_method_no_mortal
t/02_vm/06_native_api/native_api.t:# env->call_method
t/02_vm/06_native_api/native_api.t:# env->call_class_method_by_name
t/02_vm/06_native_api/native_api.t:# env->call_instance_method_static_by_name
t/02_vm/06_native_api/native_api.t:# env->call_instance_method_by_name
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->set_exception(env, stack, env->new_stack_trace_no_mortal(env, stack, env->get_exception(env, stack), current_method, line = 15));
t/02_vm/.spvm_build/work/src/SPVM/TestCase/InterfaceType.precompile.c:    env->api->internal->dec_ref_count(env, stack, stack[0].oval);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/PrecompileClassAttribute.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, current_basic_type_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  void* current_method = env->api->basic_type->get_method_by_name(env->runtime, current_basic_type, current_method_name);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_header_size = env->api->runtime->get_object_data_offset(env->runtime);
t/02_vm/.spvm_build/work/src/SPVM/TestCase/Method.precompile.c:  int32_t object_length_offset = env->api->runtime->get_object_length_offset(env->runtime);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  std::thread::id* thread_id = (std::thread::id*)env->new_memory_block(env, stack, sizeof(std::thread::id));
t/02_vm/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  void* obj_thread_id = env->new_object_by_name(env, stack, "TestCase::Util::Thread::ID", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ThisThread.cpp:  env->set_pointer(env, stack, obj_thread_id, (void*)thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* self_thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  std::thread::id* thread_id = (std::thread::id*)env->get_pointer(env, stack, obj_self);
t/02_vm/lib/SPVM/TestCase/Util/Thread/ID.cpp:  env->free_memory_block(env, stack, thread_id);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  SPVM_VALUE* stack = env->new_stack(env);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  env->call_instance_method_by_name(env, stack, "", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    void* obj_exception = env->get_exception(env, stack);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    const char* exception = env->get_chars(env, stack, obj_exception);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    env->set_field_object_by_name(env, stack, obj_self, "exception", obj_exception, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    env->set_field_int_by_name(env, stack, obj_self, "error_id", error_id, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  env->free_stack(env, stack);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  void* obj_task = env->get_field_object_by_name(env, stack, obj_self, "task", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->new_memory_block(env, stack, sizeof(std::thread));
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  env->set_pointer(env, stack, obj_self, nt_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    env->die(env, stack, "[System Error]join failed:%s", cpp_exception.what(), __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:    env->die(env, stack, "[System Error]detach failed:%s", cpp_exception.what(), __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  env->free_memory_block(env, stack, nt_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread* nt_thread = (std::thread*)env->get_pointer(env, stack, obj_thread);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  std::thread::id* thread_id = (std::thread::id*)env->new_memory_block(env, stack, sizeof(std::thread::id));
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  void* obj_thread_id = env->new_object_by_name(env, stack, "TestCase::Util::Thread::ID", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Util/Thread.cpp:  env->set_pointer(env, stack, obj_thread_id, (void*)thread_id);
t/02_vm/lib/SPVM/TestCase/Module/Native/Compiler.spvm:      my $current_runtime = $current_env->runtime;
t/02_vm/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/02_vm/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/02_vm/lib/SPVM/TestCase/Module/Native/MethodCall.spvm:      my $stack = $current_env->new_stack;
t/02_vm/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = env->new_memory_block(env, stack, sizeof(struct TestCase__Pointer));
t/02_vm/lib/SPVM/TestCase/Pointer.c:  void* struct_object = env->new_pointer_object_by_name(env, stack, "TestCase::Pointer", pointer, &e, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = (struct TestCase__Pointer*)env->get_pointer(env, stack, self);
t/02_vm/lib/SPVM/TestCase/Pointer.c:  struct TestCase__Pointer* pointer = (struct TestCase__Pointer*)env->get_pointer(env, stack, self);
t/02_vm/lib/SPVM/TestCase/Pointer.c:  env->free_memory_block(env, stack, pointer);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->runtime!= &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api!= &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_env != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_env != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_init_methods != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_program_name != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_argv != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_command_info_base_time != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->destroy_class_vars != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->args_width != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type_id != &env_array[11]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_basic_type_name != &env_array[12]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_object_type_dimension != &env_array[13]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type != &env_array[14]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_by_name != &env_array[15]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_by_id != &env_array[16]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_id != &env_array[17]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_basic_type_id_by_name != &env_array[18]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var != &env_array[19]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_byte != &env_array[20]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_short != &env_array[21]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_int != &env_array[22]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_long != &env_array[23]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_float != &env_array[24]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_double != &env_array[25]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object != &env_array[26]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_string != &env_array[27]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_byte != &env_array[28]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_short != &env_array[29]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_int != &env_array[30]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_long != &env_array[31]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_float != &env_array[32]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_double != &env_array[33]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_object != &env_array[34]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_string != &env_array[35]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object_ref != &env_array[36]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_byte_by_name != &env_array[37]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_short_by_name != &env_array[38]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_int_by_name != &env_array[39]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_long_by_name != &env_array[40]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_float_by_name != &env_array[41]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_double_by_name != &env_array[42]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_object_by_name != &env_array[43]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_var_string_by_name != &env_array[44]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_byte_by_name != &env_array[45]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_short_by_name != &env_array[46]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_int_by_name != &env_array[47]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_long_by_name != &env_array[48]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_float_by_name != &env_array[49]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_double_by_name != &env_array[50]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_object_by_name != &env_array[51]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_class_var_string_by_name != &env_array[52]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field != &env_array[53]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_static != &env_array[54]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_byte != &env_array[55]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_short != &env_array[56]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_int != &env_array[57]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_long != &env_array[58]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_float != &env_array[59]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_double != &env_array[60]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object != &env_array[61]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string != &env_array[62]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_byte != &env_array[63]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_short != &env_array[64]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_int != &env_array[65]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_long != &env_array[66]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_float != &env_array[67]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_double != &env_array[68]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_object != &env_array[69]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_string != &env_array[70]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_byte_by_name != &env_array[71]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_short_by_name != &env_array[72]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_int_by_name != &env_array[73]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_long_by_name != &env_array[74]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_float_by_name != &env_array[75]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_double_by_name != &env_array[76]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_by_name != &env_array[77]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string_by_name != &env_array[78]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_byte_by_name != &env_array[79]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_short_by_name != &env_array[80]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_int_by_name != &env_array[81]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_long_by_name != &env_array[82]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_float_by_name != &env_array[83]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_double_by_name != &env_array[84]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_object_by_name != &env_array[85]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_field_string_by_name != &env_array[86]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_string_chars_by_name != &env_array[87]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_method != &env_array[88]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_class_method != &env_array[89]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_instance_method_static != &env_array[90]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_instance_method != &env_array[91]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_method_no_mortal != &env_array[92]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_method != &env_array[93]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_class_method_by_name != &env_array[94]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_instance_method_static_by_name != &env_array[95]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->call_instance_method_by_name != &env_array[96]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_no_mortal != &env_array[97]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object != &env_array[98]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_by_name != &env_array[99]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object_no_mortal != &env_array[100]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object != &env_array[101]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_pointer_object_by_name != &env_array[102]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_pointer != &env_array[103]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_pointer != &env_array[104]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_nolen_no_mortal != &env_array[105]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_nolen != &env_array[106]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_no_mortal != &env_array[107]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string != &env_array[108]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_byte_array_no_mortal != &env_array[109]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_byte_array != &env_array[110]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_short_array_no_mortal != &env_array[111]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_short_array != &env_array[112]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_int_array_no_mortal != &env_array[113]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_int_array != &env_array[114]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_long_array_no_mortal != &env_array[115]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_long_array != &env_array[116]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_float_array_no_mortal != &env_array[117]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_float_array != &env_array[118]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_double_array_no_mortal != &env_array[119]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_double_array != &env_array[120]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array_no_mortal != &env_array[121]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array != &env_array[122]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_object_array_by_name != &env_array[123]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_array != &env_array[124]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array_no_mortal != &env_array[125]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array != &env_array[126]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_muldim_array_by_name != &env_array[127]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array_no_mortal != &env_array[128]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array != &env_array[129]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_mulnum_array_by_name != &env_array[130]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_no_mortal != &env_array[131]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto != &env_array[132]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->length != &env_array[133]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_byte != &env_array[134]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_short != &env_array[135]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_int != &env_array[136]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_long != &env_array[137]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_float != &env_array[138]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elems_double != &env_array[139]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_object != &env_array[140]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_string != &env_array[141]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_elem_object != &env_array[142]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_elem_string != &env_array[143]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_chars != &env_array[144]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_bool_object_value != &env_array[145]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->concat_no_mortal != &env_array[146]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->concat != &env_array[147]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->shorten != &env_array[148]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->make_read_only != &env_array[149]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_read_only != &env_array[150]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->print != &env_array[151]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->print_stderr != &env_array[152]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dump_no_mortal != &env_array[153]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dump != &env_array[154]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->dumpc != &env_array[155]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->copy_no_mortal != &env_array[156]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->copy != &env_array[157]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_spvm_version_string != &env_array[158]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_spvm_version_number != &env_array[159]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_version_string != &env_array[160]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_version_number != &env_array[161]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->die != &env_array[162]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_exception != &env_array[163]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->set_exception != &env_array[164]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack_trace_no_mortal != &env_array[165]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack_trace != &env_array[166]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_string != &env_array[167]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_class != &env_array[168]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_pointer_class != &env_array[169]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_array != &env_array[170]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_object_array != &env_array[171]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_numeric_array != &env_array[172]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_mulnum_array != &env_array[173]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isa != &env_array[174]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isa_by_name != &env_array[175]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_type != &env_array[176]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->is_type_by_name != &env_array[177]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->elem_isa != &env_array[178]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_elem_size != &env_array[179]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_type_name_no_mortal != &env_array[180]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_type_name != &env_array[181]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_compile_type_name_no_mortal != &env_array[182]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_compile_type_name != &env_array[183]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->enter_scope != &env_array[184]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->leave_scope != &env_array[185]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->push_mortal != &env_array[186]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->weaken != &env_array[187]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->isweak != &env_array[188]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->unweaken != &env_array[189]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_string != &env_array[190]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_string_nolen != &env_array[191]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror != &env_array[192]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->strerror_nolen != &env_array[193]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->reserved194 != &env_array[194]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->reserved195 != &env_array[195]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_stack != &env_array[196]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_stack != &env_array[197]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_defined_and_has_pointer_by_name != &env_array[198]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_ref != &env_array[199]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_field_object_ref_by_name != &env_array[200]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->check_stack_env != &env_array[201]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->assign_object != &env_array[202]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_string_array_no_mortal != &env_array[203]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_memory_block != &env_array[204]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->free_memory_block != &env_array[205]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->get_memory_blocks_count != &env_array[206]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->say != &env_array[207]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->warn != &env_array[208]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stdin != &env_array[209]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stdout != &env_array[210]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->spvm_stderr != &env_array[211]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->check_bootstrap_method != &env_array[212]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_element_no_mortal != &env_array[213]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->new_array_proto_element != &env_array[214]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->allocator;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->allocator->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->allocator->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->arg;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->arg->get_stack_index != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->basic_type;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_id != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_category != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_parent != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_version_string != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_dir != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_rel_file != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_pointer != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_anon != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_var_by_index != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_var_by_name != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_class_vars_length != &env_array[11]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_field_by_index != &env_array[12]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_field_by_name != &env_array[13]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_fields_length != &env_array[14]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_method_by_index != &env_array[15]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_method_by_name != &env_array[16]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_methods_length != &env_array[17]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_anon_basic_type_by_index != &env_array[18]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_anon_basic_types_length != &env_array[19]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->has_interface != &env_array[20]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->is_super_class != &env_array[21]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->basic_type->get_file != &env_array[22]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->class_file;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_class_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_file != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_file != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_dir != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_dir != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_rel_file != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_rel_file != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_content != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_content != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->get_content_length != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_file->set_content_length != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->class_var;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->class_var->get_current_basic_type != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->compiler;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_start_line != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->set_start_line != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_start_file != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->set_start_file != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_include_dirs_length != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_include_dir != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->add_include_dir != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->clear_include_dirs != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->add_class_file != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->delete_class_file != &env_array[11]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_class_file != &env_array[12]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->compile != &env_array[13]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_error_message != &env_array[14]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_error_messages_length != &env_array[15]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->get_runtime != &env_array[16]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->compiler->prepend_include_dir != &env_array[17]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->field;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_offset != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_basic_type != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_type_dimension != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_type_flag != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->field->get_current_basic_type != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->internal;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->get_ref_count != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->inc_ref_count != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->dec_ref_count != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->internal->leave_scope_local != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->method;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_name != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_index != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_basic_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_type_dimension != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_return_type_flag != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_arg_by_index != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_args_length != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_required_args_length != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_current_basic_type != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_opcode_by_index != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_opcodes_length != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_class_method != &env_array[11]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_anon != &env_array[12]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_native != &env_array[13]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_precompile != &env_array[14]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->is_enum != &env_array[15]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_byte_vars_width != &env_array[16]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_short_vars_width != &env_array[17]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_int_vars_width != &env_array[18]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_long_vars_width != &env_array[19]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_float_vars_width != &env_array[20]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_double_vars_width != &env_array[21]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_object_vars_width != &env_array[22]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_ref_vars_width != &env_array[23]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_mortal_stack_length != &env_array[24]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_native_address != &env_array[25]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->set_native_address != &env_array[26]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->get_precompile_address != &env_array[27]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->method->set_precompile_address != &env_array[28]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->mutex;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->lock != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->unlock != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->reader_lock != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->mutex->reader_unlock != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->runtime;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_data_offset != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_ref_count_offset != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_object_length_offset != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_type_by_id != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_type_by_name != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_basic_types_length != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->build_precompile_class_source != &env_array[6]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->build_precompile_method_source != &env_array[7]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_compiler != &env_array[8]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->set_compiler != &env_array[9]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stdin != &env_array[10]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stdout != &env_array[11]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->runtime->get_spvm_stderr != &env_array[12]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->string_buffer;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->new_instance != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->free_instance != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->get_string != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->string_buffer->get_length != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void** env_array = (void**)env->api->type;
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->can_assign != &env_array[0]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->get_type_width != &env_array[1]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_object_type != &env_array[2]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_any_object_type != &env_array[3]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_object_array_type != &env_array[4]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if ((void*)&env->api->type->is_any_object_array_type != &env_array[5]) { stack[0].ival = 0; return 0; }
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  spvm_warnf(env->spvm_stderr(env, stack), "[Test Output]spvm_warnf: %s %d", "aaa", 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  spvm_warnf(env->spvm_stderr(env, stack), "[Test Output]spvm_warnf:Foo");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$INT_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int(env, stack, class_var, INT32_MIN);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$INT_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$LONG_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  long value = env->get_class_var_long(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* class_var = env->get_class_var(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double(env, stack, class_var);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$INT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$BYTE_VALUE", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_byte_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$SHORT_VALUE", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_short_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$INT_VALUE", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$LONG_VALUE", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_long_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$FLOAT_VALUE", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_float_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$DOUBLE_VALUE", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_double_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$MINIMAL_VALUE", minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_object_by_name(env, stack, "TestCase::NativeAPI", "$NOT_FOUND", minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "TestCase::Minimal", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_object_by_name(env, stack, "NotFound", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* minimal = env->new_pointer_object_by_name(env, stack, "TestCase::NotFound", pointer, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t match = env->is_type(env, stack, object, basic_type, 1);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_byte_by_name(env, stack, object, "byte_value", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_byte_by_name(env, stack, object, "not_found", INT8_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_short_by_name(env, stack, object, "short_value", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_short_by_name(env, stack, object, "not_found", INT16_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int_by_name(env, stack, object, "int_value", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int_by_name(env, stack, object, "not_found", INT32_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_long_by_name(env, stack, object, "long_value", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_long_by_name(env, stack, object, "not_found", INT64_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_float_by_name(env, stack, object, "float_value", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_float_by_name(env, stack, object, "not_found", FLT_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_double_by_name(env, stack, object, "double_value", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_double_by_name(env, stack, object, "not_found", DBL_MIN, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->new_object(env, stack, basic_type);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int(env, stack, object_minimal, field_minimal_x, 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_object_by_name(env, stack, object_simple, "object_value", object_minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->new_object(env, stack, basic_type);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_int(env, stack, object_minimal, field_minimal_x, 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_field_object_by_name(env, stack, object_simple, "not_found", object_minimal, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t byte_value = env->get_field_byte_by_name(env, stack, object, "byte_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t byte_value = env->get_field_byte_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t short_value = env->get_field_short_by_name(env, stack, object, "short_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t short_value = env->get_field_short_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t int_value = env->get_field_int_by_name(env, stack, object, "int_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t int_value = env->get_field_int_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int64_t long_value = env->get_field_long_by_name(env, stack, object, "long_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int64_t long_value = env->get_field_long_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float float_value = env->get_field_float_by_name(env, stack, object, "float_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float float_value = env->get_field_float_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double double_value = env->get_field_double_by_name(env, stack, object, "double_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double double_value = env->get_field_double_by_name(env, stack, object, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->get_field_object_by_name(env, stack, object_simple, "object_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int(env, stack, object_minimal, field_minimal_x);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* string_chars = env->get_field_string_chars_by_name(env, stack, string_chars_simple, "string_value", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* string_chars = env->get_field_string_chars_by_name(env, stack, string_chars_simple, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* object_minimal = env->get_field_object_by_name(env, stack, object_simple, "not_found", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field_minimal_x = env->get_field(env, stack, object_minimal, "x");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int(env, stack, object_minimal, field_minimal_x);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t* bytes = env->get_elems_byte(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_byte");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int8_t value = env->get_field_byte(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_short");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int16_t value = env->get_field_short(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_int");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_field_int(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_long");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int64_t value = env->get_field_long(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_float");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  float value = env->get_field_float(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "x_double");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  double value = env->get_field_double(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* field = env->get_field(env, stack, test_case, "minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* value = env->get_field_object(env, stack, test_case, field);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t length = env->length(env, stack, obj_nums1);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums1 = env->get_elems_int(env, stack, obj_nums1);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums2 = env->get_elems_int(env, stack, obj_nums2);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* onums3 = env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t* nums3 = env->get_elems_int(env, stack, onums3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception %s", "ppp.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  return env->die(env, stack, "Exception.", __func__, "TestCase/NativeAPI.native/NativeAPI.c", __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_byte_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_short_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_long_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_float_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_long_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_values = env->new_string(env, stack, "foo", (int32_t)strlen("foo"));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_values);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_object = env->new_object(env, stack, basic_type);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_object);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_object_array(env, stack, basic_type, 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Minimal");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_object_array(env, stack, basic_type, 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::Pointer");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_objects = env->new_pointer_object(env, stack, basic_type, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    ref_count += env->api->internal->get_ref_count(env, stack, obj_objects);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t start_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t before_enter_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t mortal_stack_top = env->enter_scope(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->new_int_array(env, stack, length);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    before_leave_memory_blocks_count = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->leave_scope(env, stack, mortal_stack_top);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t after_leave_memory_blocks_counts = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "my_value");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t error_id = env->call_method_no_mortal(env, stack, method, args_width);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "Point");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "new");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    error_id = env->call_method(env, stack, method, args_width);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t x = env->get_field_int_by_name(env, stack, obj_point, "x", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t y = env->get_field_int_by_name(env, stack, obj_point, "y", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "my_value", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "NotFound", "foo", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"NotFound\" class is not found.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "not_found", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" method in the \"TestCase::NativeAPI\" class is not found.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "instance_method", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"instance_method\" method in the \"TestCase::NativeAPI\" class must be a class method.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "NotFound", "foo", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"NotFound\" class is not found.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "TestCase::NativeAPI", "not_found", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" method in the \"TestCase::NativeAPI\" class is not found.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_static_by_name(env, stack, "TestCase::NativeAPI", "class_method", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"class_method\" method in the \"TestCase::NativeAPI\" class must be an instance method.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_static_by_name(env, stack, "TestCase::Minimal", "x", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_static_by_name(env, stack, "TestCase::Minimal", "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_class_method_by_name(env, stack, "TestCase::NativeAPI", "new", 0, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->call_instance_method_by_name(env, stack, "not_found", 1, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      if(!strstr(env->get_chars(env, stack, env->get_exception(env, stack)), "The \"not_found\" instance method in the \"TestCase::NativeAPI\" class is not found in the invocant class or its super classes.")) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_by_name(env, stack, "x", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_instance_method_by_name(env, stack, "not_found", args_width, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* iarray = env->new_int_array_no_mortal(env, stack, 10);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->push_mortal(env, stack, iarray);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->push_mortal(env, stack, iarray);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->get_instance_method_static(env, stack, "TestCase::Minimal", "x");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->call_method(env, stack, method, args_width);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t value = env->get_bool_object_value(env, stack, bool_object);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 1);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 1) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, "abc", 4);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, NULL, 4);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_no_mortal(env, stack, NULL, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 3);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 1);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 1) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, "abc", 4);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, NULL, 4);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 4) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string(env, stack, NULL, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen_no_mortal(env, stack, "abc");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen_no_mortal(env, stack, "");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:      env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "abc");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_type_dimension = env->get_object_type_dimension(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 3) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (env->length(env, stack, string) != 0) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_chars = env->get_chars(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t memory_blocks_count_start = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* memory_block = env->new_memory_block(env, stack, sizeof(SPVM_ENV));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start + 1)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->free_memory_block(env, stack, memory_block);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* new_stack = env->new_stack(env);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->free_stack(env, new_stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* new_stack = env->new_stack(env);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t memory_blocks_count_start = env->get_memory_blocks_count(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* memory_block_new_stack = env->new_memory_block(env, new_stack, 8);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, new_stack) == memory_blocks_count_start + 1)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->free_memory_block(env, new_stack, memory_block_new_stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    if (!(env->get_memory_blocks_count(env, stack) == memory_blocks_count_start)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->free_stack(env, new_stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t int_basic_type_id = env->get_basic_type_id(env, stack, "int");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t not_found_basic_type_id = env->get_basic_type_id(env, stack, "NotFoundBasicType");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* strerror_value = env->strerror(env, stack, errno_value, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_strerror_value = env->new_string(env, stack, strerror_value, strlen(strerror_value));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string(env, stack, errno_value, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  spvm_warn("[Test Output]strerr_string:%s", env->get_chars(env, stack, strerror_string_value));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string(env, stack, errno_value, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* strerror_value = env->strerror_nolen(env, stack, errno_value);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_strerror_value = env->new_string(env, stack, strerror_value, strlen(strerror_value));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* strerror_string_value = env->strerror_string_nolen(env, stack, errno_value);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_object_array = env->new_object_array_no_mortal(env, stack, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 2);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_object_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_object_array) == 0)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_object_array) == 2)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->assign_object(env, stack, &referent, obj_object_array);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->assign_object(env, stack, &referent, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_object_array = env->new_object_array(env, stack, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 2);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_object_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_object_array) == 1)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_object_array) == 2)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_string_array = env->new_string_array(env, stack, 2);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->is_type(env, stack, obj_string_array, env->get_basic_type_by_id(env, stack, SPVM_NATIVE_C_BASIC_TYPE_ID_STRING), 1))) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->api->internal->get_ref_count(env, stack, obj_string_array) == 1)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->length(env, stack, obj_string_array) == 2)) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* obj_string_array = env->new_string_array(env, stack, 2);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_elem_object(env, stack, obj_string_array, 0, env->new_string_nolen(env, stack, "abc"));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_elem_object(env, stack, obj_string_array, 1, env->new_string_nolen(env, stack, "def"));
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  stack[0].ival = env->args_width(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t args_width = env->args_width(env, stack);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* dumpc = env->dumpc(env, stack, NULL);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stdin = env->api->runtime->get_spvm_stdin(env->runtime);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stdout = env->api->runtime->get_spvm_stdout(env->runtime);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  FILE* spvm_stderr = env->api->runtime->get_spvm_stderr(env->runtime);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* allocator = env->api->allocator->new_instance();
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string_buffer = env->api->string_buffer->new_instance(allocator, 0);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "get_class_var_byte_by_name");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->api->runtime->build_precompile_method_source(env->runtime, string_buffer, method);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_buffer_value = env->api->string_buffer->get_string(string_buffer);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    int32_t string_buffer_length = env->api->string_buffer->get_length(string_buffer);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->api->string_buffer->free_instance(string_buffer);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    env->api->allocator->free_instance(allocator);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* obj_compile_type_name = env->get_compile_type_name(env, stack, basic_type_name, type_dimension, type_flag);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* compile_type_name = env->get_chars(env, stack, obj_compile_type_name);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* basic_type = env->api->runtime->get_basic_type_by_name(env->runtime, "TestCase::NativeAPI");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* method = env->api->basic_type->get_method_by_name(env->runtime, basic_type, "VALUE0");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t is_enum = env->api->method->is_enum(env->runtime, method);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  void* sv_text = env->get_field_object_by_name(env, stack, sv_self, "text", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t length = env->length(env, stack, sv_text);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* text_chars = env->get_chars(env, stack, sv_text);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    void* string = env->new_string_nolen(env, stack, "abc");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    const char* string_basic_type_name = env->get_object_basic_type_name(env, stack, string);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stdout mode must be _O_BINARY.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDOUT_WINDOWS_BINARY_MODE", stdout_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stderr mode must be _O_BINARY.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDERR_WINDOWS_BINARY_MODE", stderr_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "stdin mode must be _O_BINARY.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  env->set_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDIN_WINDOWS_BINARY_MODE", stdin_mode_current, &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "$path must be defined.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* path = env->get_chars(env, stack, obj_path);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "freopen failed.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t stdout_mode_current = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDOUT_WINDOWS_BINARY_MODE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "fclose failed.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "$path must be defined.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  const char* path = env->get_chars(env, stack, obj_path);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "freopen failed.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  int32_t stderr_mode_current = env->get_class_var_int_by_name(env, stack, "TestCase::NativeAPI", "$STDERR_WINDOWS_BINARY_MODE", &error_id, __func__, FILE_NAME, __LINE__);
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:    return env->die(env, stack, "fclose failed.");
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stdin(env, stack) == env->api->runtime->get_spvm_stdin(env->runtime))) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stdout(env, stack) == env->api->runtime->get_spvm_stdout(env->runtime))) {
t/02_vm/lib/SPVM/TestCase/NativeAPI.c:  if (!(env->spvm_stderr(env, stack) == env->api->runtime->get_spvm_stderr(env->runtime))) {
t/02_vm/lib/SPVM/TestCase/NativeAPICpp.cpp:  spvm_warnf(env->api->runtime->get_spvm_stderr(env->runtime), "spvm_warnf test: %s %d", "aaa", 3);
t/02_vm/lib/SPVM/TestCase/NativeAPICpp.cpp:  spvm_warnf(env->api->runtime->get_spvm_stderr(env->runtime), "spvm_warnf test:Foo");
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib2.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib2.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Basic.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
t/02_vm/lib/SPVM/TestCase/UseResource/Mylib1.c:  stack[0].oval = env->new_string_nolen(env, stack, string);
