blob: 990a190f8361cf7e9ec00dcd9b6610a061b54007 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8/*
9 * if_perl.xs: Main code for Perl interface support.
10 * Mostly written by Sven Verdoolaege.
11 */
12
13#define _memory_h /* avoid memset redeclaration */
14#define IN_PERL_FILE /* don't include if_perl.pro from proto.h */
15
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020016/*
Bram Moolenaar6b107212013-12-11 15:06:40 +010017 * Currently 32-bit version of ActivePerl is built with VC6 (or MinGW since
18 * ActivePerl 5.18).
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020019 * (http://community.activestate.com/faq/windows-compilers-perl-modules)
20 * It means that time_t should be 32-bit. However the default size of
21 * time_t is 64-bit since VC8. So we have to define _USE_32BIT_TIME_T.
22 */
23#if defined(WIN32) && !defined(_WIN64)
24# define _USE_32BIT_TIME_T
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#include "vim.h"
28
Bram Moolenaar207fd752013-12-14 11:50:35 +010029#ifdef _MSC_VER
Bram Moolenaar02890652020-10-31 13:05:11 +010030// Work around for using MSVC and ActivePerl 5.18.
Bram Moolenaar207fd752013-12-14 11:50:35 +010031# define __inline__ __inline
Bram Moolenaare73b38f2020-01-06 21:22:09 +010032// Work around for using MSVC and Strawberry Perl 5.30.
33# define __builtin_expect(expr, val) (expr)
Bram Moolenaar02890652020-10-31 13:05:11 +010034// Work around for using MSVC and Strawberry Perl 5.32.
35# define NO_THREAD_SAFE_LOCALE
Bram Moolenaar207fd752013-12-14 11:50:35 +010036#endif
37
Ken Takata2b126a62023-10-18 11:59:44 +020038#if defined(MSWIN) && defined(DYNAMIC_PERL)
39// Work around for warning C4273 (inconsistent DLL linkage).
40# define PERL_EXT_RE_BUILD
41#endif
42
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010043#ifdef __GNUC__
44# pragma GCC diagnostic push
45# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010046#endif
47
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020048#include <EXTERN.h>
49#include <perl.h>
50#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020051#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
52# include <perliol.h>
53#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000054
Bram Moolenaarcf190c62016-06-02 11:54:06 +020055/* Workaround for perl < 5.8.7 */
56#ifndef PERLIO_FUNCS_DECL
57# ifdef PERLIO_FUNCS_CONST
58# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
59# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
60# else
61# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
62# define PERLIO_FUNCS_CAST(funcs) (funcs)
63# endif
64#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020065#ifndef SvREFCNT_inc_void_NN
66# define SvREFCNT_inc_void_NN SvREFCNT_inc
67#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020068
Bram Moolenaar071d4272004-06-13 20:20:40 +000069/*
70 * Work around clashes between Perl and Vim namespace. proto.h doesn't
71 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
72 * we need the CV typedef. proto.h can't be moved to after including
73 * if_perl.h, because we get all sorts of name clashes then.
74 */
75#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020076# ifndef __MINGW32__
77# include "proto/if_perl.pro"
78# include "proto/if_perlsfio.pro"
79# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#endif
81
Bram Moolenaar1f402802018-09-21 14:01:27 +020082// Perl compatibility stuff. This should ensure compatibility with older
83// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020085# include <patchlevel.h>
86# define PERL_REVISION 5
87# define PERL_VERSION PATCHLEVEL
88# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
Bram Moolenaar1f402802018-09-21 14:01:27 +020091
92// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
93#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +010094 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +020095# undef XS_EXTERNAL
96# define XS_EXTERNAL(name) XSPROTO(name)
97#endif
98
Bram Moolenaar700d1d72007-09-13 13:20:16 +000099/*
100 * Quoting Jan Dubois of Active State:
101 * ActivePerl build 822 still identifies itself as 5.8.8 but already
102 * contains many of the changes from the upcoming Perl 5.8.9 release.
103 *
104 * The changes include addition of two symbols (Perl_sv_2iv_flags,
105 * Perl_newXS_flags) not present in earlier releases.
106 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000107 * Jan Dubois suggested the following guarding scheme.
108 *
109 * Active State defined ACTIVEPERL_VERSION as a string in versions before
110 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000111 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000112#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
113# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
114# define PERL589_OR_LATER
115# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000116#endif
117#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
118# define PERL589_OR_LATER
119#endif
120
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100121#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
122 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
123# define PERL5101_OR_LATER
124#endif
125
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200127# define pTHX void
128# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129#endif
130
131#ifndef EXTERN_C
132# define EXTERN_C
133#endif
134
Philip H53752052022-11-04 22:32:21 +0000135// Suppress Infinite warnings when compiling XS modules under macOS 12 Monterey.
136#if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11
K.Takata161b6ac2022-11-14 15:31:07 +0000137# pragma clang diagnostic ignored "-Wcompound-token-split-by-macro"
Philip H53752052022-11-04 22:32:21 +0000138#endif
139
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140/* Compatibility hacks over */
141
142static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100143static void xs_init(pTHX);
144static void VIM_init(void);
145EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
147/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200148 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 */
150#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200151
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200152# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100153# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200154typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200155# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200156typedef int XSINIT_t;
157typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200158# endif
159# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200160typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200161# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200162
Ken Takatac97b3fe2023-10-11 21:27:06 +0200163# ifdef MSWIN
164# define PERL_PROC FARPROC
165# define load_dll vimLoadLib
166# define symbol_from_dll GetProcAddress
167# define close_dll FreeLibrary
168# define load_dll_error GetWin32Error
169# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200170# include <dlfcn.h>
171# define HANDLE void*
172# define PERL_PROC void*
173# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
174# define symbol_from_dll dlsym
175# define close_dll dlclose
Martin Tournoij1a3e5742021-07-24 13:57:29 +0200176# define load_dll_error dlerror
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200177# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178/*
179 * Wrapper defines
180 */
181# define perl_alloc dll_perl_alloc
182# define perl_construct dll_perl_construct
183# define perl_parse dll_perl_parse
184# define perl_run dll_perl_run
185# define perl_destruct dll_perl_destruct
186# define perl_free dll_perl_free
Christian Brabandt55460da2023-08-29 21:31:28 +0200187# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
188# define Perl_get_context dll_Perl_get_context
189# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100191# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100192# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
193# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194# ifndef PROTO
Drew Vogel97baa1c2025-02-10 20:17:56 +0100195# if defined(PERL_IMPLICIT_CONTEXT)
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200196# define Perl_croak_nocontext dll_Perl_croak_nocontext
197# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198# define Perl_call_argv dll_Perl_call_argv
199# define Perl_call_pv dll_Perl_call_pv
200# define Perl_eval_sv dll_Perl_eval_sv
201# define Perl_get_sv dll_Perl_get_sv
202# define Perl_eval_pv dll_Perl_eval_pv
203# define Perl_call_method dll_Perl_call_method
204# endif
205# define Perl_dowantarray dll_Perl_dowantarray
206# define Perl_free_tmps dll_Perl_free_tmps
207# define Perl_gv_stashpv dll_Perl_gv_stashpv
208# define Perl_markstack_grow dll_Perl_markstack_grow
209# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200210# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
211# define Perl_mg_get dll_Perl_mg_get
212# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213# define Perl_newXS dll_Perl_newXS
214# define Perl_newSV dll_Perl_newSV
215# define Perl_newSViv dll_Perl_newSViv
216# define Perl_newSVpv dll_Perl_newSVpv
217# define Perl_pop_scope dll_Perl_pop_scope
218# define Perl_push_scope dll_Perl_push_scope
219# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200220# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
221# define Perl_save_strlen dll_Perl_save_strlen
222# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define Perl_stack_grow dll_Perl_stack_grow
224# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200225# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200226# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
227# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
228# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
229# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200230# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200231# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200232# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233# define Perl_sv_2iv dll_Perl_sv_2iv
234# define Perl_sv_2mortal dll_Perl_sv_2mortal
235# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
236# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
237# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
238# else
239# define Perl_sv_2pv dll_Perl_sv_2pv
240# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200241# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
242# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
243# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100244# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245# define Perl_sv_bless dll_Perl_sv_bless
246# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
247# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
248# else
249# define Perl_sv_catpvn dll_Perl_sv_catpvn
250# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200251# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000252# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
253# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200254# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000256# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
257# define Perl_sv_free2 dll_Perl_sv_free2
258# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259# define Perl_sv_isa dll_Perl_sv_isa
260# define Perl_sv_magic dll_Perl_sv_magic
261# define Perl_sv_setiv dll_Perl_sv_setiv
262# define Perl_sv_setpv dll_Perl_sv_setpv
263# define Perl_sv_setpvn dll_Perl_sv_setpvn
264# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
265# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
266# else
267# define Perl_sv_setsv dll_Perl_sv_setsv
268# endif
269# define Perl_sv_upgrade dll_Perl_sv_upgrade
270# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
271# define Perl_Top_ptr dll_Perl_Top_ptr
272# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
273# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
274# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
275# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
276# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
277# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
278# define Perl_TSv_ptr dll_Perl_TSv_ptr
279# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
280# define Perl_Tna_ptr dll_Perl_Tna_ptr
281# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
282# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
283# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
284# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200285# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000287# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000288# define Perl_sys_term dll_Perl_sys_term
289# define Perl_ISv_ptr dll_Perl_ISv_ptr
290# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
291# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
292# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
293# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
294# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
295# define Perl_Ina_ptr dll_Perl_Ina_ptr
296# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
297# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
298# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
299# define Perl_Iop_ptr dll_Perl_Iop_ptr
300# define Perl_call_list dll_Perl_call_list
301# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
302# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200303# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
304# define Perl_xs_handshake dll_Perl_xs_handshake
305# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
306# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200307# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100308# ifdef USE_ITHREADS
309# define PL_thr_key *dll_PL_thr_key
310# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200311# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200312# ifdef PERL_USE_THREAD_LOCAL
313# define PL_current_context *dll_PL_current_context
314# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100315# if defined(DYNAMIC_PERL) && ((PERL_REVISION == 5) && (PERL_VERSION >= 38))
316# define PL_memory_wrap *dll_PL_memory_wrap
317# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100318# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
319# define Perl_hv_iterinit dll_Perl_hv_iterinit
320# define Perl_hv_iterkey dll_Perl_hv_iterkey
321# define Perl_hv_iterval dll_Perl_hv_iterval
322# define Perl_av_fetch dll_Perl_av_fetch
323# define Perl_av_len dll_Perl_av_len
324# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200325# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
326# define PerlIOBase_pushed dll_PerlIOBase_pushed
327# define PerlIO_define_layer dll_PerlIO_define_layer
328# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200329# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
330# define Perl_savetmps dll_Perl_savetmps
331# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000332
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333/*
334 * Declare HANDLE for perl.dll and function pointers.
335 */
336static HANDLE hPerlLib = NULL;
337
Yee Cheng Chinf7f746b2023-09-30 12:28:50 +0200338static PerlInterpreter* (*perl_alloc)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339static void (*perl_construct)(PerlInterpreter*);
340static void (*perl_destruct)(PerlInterpreter*);
341static void (*perl_free)(PerlInterpreter*);
342static int (*perl_run)(PerlInterpreter*);
343static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
Christian Brabandt55460da2023-08-29 21:31:28 +0200344# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000345static void* (*Perl_get_context)(void);
Christian Brabandt55460da2023-08-29 21:31:28 +0200346# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200347static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200348# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100349/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200350# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200351static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
352 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200353# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200354static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
355 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200356# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100357# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100358# if defined(PERL_IMPLICIT_CONTEXT)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200359static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361static I32 (*Perl_dowantarray)(pTHX);
362static void (*Perl_free_tmps)(pTHX);
363static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200364# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200365static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200366# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200370# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
371static int (*Perl_mg_get)(pTHX_ SV*);
372# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
374static SV* (*Perl_newSV)(pTHX_ STRLEN);
375static SV* (*Perl_newSViv)(pTHX_ IV);
376static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
377static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
378static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
379static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
380static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
381static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
382static SV* (*Perl_call_method)(pTHX_ const char*, I32);
383static void (*Perl_pop_scope)(pTHX);
384static void (*Perl_push_scope)(pTHX);
385static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200387static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200388# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
390static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200391# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200392static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200393# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200394static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200395# endif
396# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200398# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399static IV (*Perl_sv_2iv)(pTHX_ SV*);
400static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Philip H1d7caa52023-06-22 08:55:47 +0200402static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200404# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200406# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100407static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200408# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
Philip H1d7caa52023-06-22 08:55:47 +0200409static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200410# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200412# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200416# endif
417# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000418static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
419static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200420# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421static void (*Perl_sv_free)(pTHX_ SV*);
422static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
423static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
424static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
425static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
426static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200427# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200429# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200433# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
435static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
436static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
437static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
438static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
439static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
440static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
441static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
442static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
443static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
444static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100445# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200446/* Perl-5.18 has a different Perl_sv_free2 signature. */
447# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
448static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
449# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000450static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200451# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000452static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000453static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200454static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200455# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
456# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000457static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
458static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
459static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
460static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
461static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
462static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
463static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
464static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
465static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
466static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
467static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000468static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
469static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200470# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200471# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200472# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200473static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
474static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100475# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200476
477# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
478# ifdef USE_ITHREADS
479static perl_key* dll_PL_thr_key;
480# endif
481# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200482static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
483static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
484static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200485static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200486# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200487# ifdef PERL_USE_THREAD_LOCAL
488static void** dll_PL_current_context;
489# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100490# if defined(DYNAMIC_PERL) && ((PERL_REVISION == 5) && (PERL_VERSION >= 38))
491static const char **dll_PL_memory_wrap;
492# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200493static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100494static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
495static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
496static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
497static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
498static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
499static SSize_t (*Perl_av_len)(pTHX_ AV *);
500static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200501# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200502static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
503static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200504# endif
505# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200506static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200507# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200508
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509/*
510 * Table of name to function pointer of perl.
511 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512static struct {
513 char* name;
514 PERL_PROC* ptr;
515} perl_funcname_table[] = {
516 {"perl_alloc", (PERL_PROC*)&perl_alloc},
517 {"perl_construct", (PERL_PROC*)&perl_construct},
518 {"perl_destruct", (PERL_PROC*)&perl_destruct},
519 {"perl_free", (PERL_PROC*)&perl_free},
520 {"perl_run", (PERL_PROC*)&perl_run},
521 {"perl_parse", (PERL_PROC*)&perl_parse},
Christian Brabandt55460da2023-08-29 21:31:28 +0200522# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
Christian Brabandt55460da2023-08-29 21:31:28 +0200524# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000525 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200526# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100527 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200528# endif
529# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
533 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
534 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
535 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
536 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200537# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
538 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
539# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
541 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
542 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
543 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
544 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
545 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
546 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
547 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
548 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
549 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
550 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
551 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
552 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200553# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200554 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200555# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
557 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200559 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200560# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200561 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200562# endif
563# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200565# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
567 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200568# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
570 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200571# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200573# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100574 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200575# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
576 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
577# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200578# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000579 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
580 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200581# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200583# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200585# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200587# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
589 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
590 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
591 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
592 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
593 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200594# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200596# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200598# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200600# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
602 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
603 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
604 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
605 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
606 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
607 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
608 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
609 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
610 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
611 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200612# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000613 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000614 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000615 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200616 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200617# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
618# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000619 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000620 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200621 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
622 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000623 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
624 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200625 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000626 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
627 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200628 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
629 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000630 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
631 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200632# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200633# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200634# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200635 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
636 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200637# endif
638# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100639# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200640 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100641# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100642# ifdef PERL_USE_THREAD_LOCAL
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200643 {"PL_current_context", (PERL_PROC*)&dll_PL_current_context},
Drew Vogel97baa1c2025-02-10 20:17:56 +0100644# endif
645# if defined(DYNAMIC_PERL) && ((PERL_REVISION == 5) && (PERL_VERSION >= 38))
646 {"PL_memory_wrap", (PERL_PROC*)&dll_PL_memory_wrap},
647# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200648# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
650 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
651 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200652 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200653# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200654 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100655 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
656 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
657 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
658 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
659 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
660 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
661 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200662# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200663 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
664 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200665# endif
666# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200667 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200668# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669 {"", NULL},
670};
671
Christian Brabandt55460da2023-08-29 21:31:28 +0200672# if (PERL_REVISION == 5) && (PERL_VERSION <= 30)
673// In 5.30, GIMME_V requires linking to Perl_block_gimme() instead of being
674// completely inline. Just use the deprecated GIMME for simplicity.
675# undef GIMME_V
676# define GIMME_V GIMME
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200677# endif
678
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679/*
680 * Make all runtime-links of perl.
681 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200682 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 * 2. Get pointer to perl function by GetProcAddress.
684 * 3. Repeat 2, until get all functions will be used.
685 *
686 * Parameter 'libname' provides name of DLL.
687 * Return OK or FAIL.
688 */
689 static int
690perl_runtime_link_init(char *libname, int verbose)
691{
692 int i;
693
694 if (hPerlLib != NULL)
695 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200696 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 {
698 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100699 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 return FAIL;
701 }
702 for (i = 0; perl_funcname_table[i].ptr; ++i)
703 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200704 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 perl_funcname_table[i].name)))
706 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200707 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 hPerlLib = NULL;
709 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000710 semsg((const char *)_(e_could_not_load_library_function_str), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 return FAIL;
712 }
713 }
714 return OK;
715}
716
717/*
718 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
719 * There were no DLL loaded, return FALSE.
720 */
721 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100722perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100724 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725}
726#endif /* DYNAMIC_PERL */
727
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200728#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
729static void vim_IOLayer_init(void);
730#endif
731
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732/*
733 * perl_init(): initialize perl interpreter
734 * We have to call perl_parse to initialize some structures,
735 * there's nothing to actually parse.
736 */
737 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100738perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000740 char *bootargs[] = { "VI", NULL };
741 int argc = 3;
742 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
Bram Moolenaarc236c162008-07-13 17:41:49 +0000744#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000745 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000746#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747 perl_interp = perl_alloc();
748 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000749 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
751 VIM_init();
752#ifdef USE_SFIO
753 sfdisc(PerlIO_stdout(), sfdcnewvim());
754 sfdisc(PerlIO_stderr(), sfdcnewvim());
755 sfsetbuf(PerlIO_stdout(), NULL, 0);
756 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200757#elif defined(PERLIO_LAYERS)
758 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759#endif
760}
761
762/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200763 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 */
765 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100766perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767{
768 if (perl_interp)
769 {
770 perl_run(perl_interp);
771 perl_destruct(perl_interp);
772 perl_free(perl_interp);
773 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000774#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100775 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000776#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778}
779
780/*
781 * msg_split(): send a message to the message handling routines
782 * split at '\n' first though.
783 */
784 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100785msg_split(
786 char_u *s,
787 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788{
789 char *next;
790 char *token = (char *)s;
791
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000792 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 {
794 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100795 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 token = next;
797 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000798 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100799 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800}
801
802#ifndef FEAT_EVAL
803/*
804 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
805 * work properly.
806 */
807 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100808eval_to_string(
809 char_u *arg UNUSED,
Bram Moolenaara4e0b972022-10-01 19:43:52 +0100810 int convert UNUSED,
811 int use_simple_function UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812{
813 return NULL;
814}
815#endif
816
817/*
818 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000819 * The b_perl_private/w_perl_private part of the SCR structure points to the
820 * SV, so there can only be one such SV for a particular SCR structure. When
821 * the last reference has gone (DESTROY is called),
822 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 * all references are gone, the value of the SV is reset;
824 * any subsequent use of any of those reference will produce
825 * a warning. (see typemap)
826 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000827
828 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100829newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000830{
831 sv_upgrade(rv, SVt_RV);
832 if (ptr->w_perl_private == NULL)
833 {
834 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100835 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000836 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200837 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000838 SvRV(rv) = ptr->w_perl_private;
839 SvROK_on(rv);
840 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841}
842
Bram Moolenaare344bea2005-09-01 20:46:49 +0000843 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100844newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000845{
846 sv_upgrade(rv, SVt_RV);
847 if (ptr->b_perl_private == NULL)
848 {
849 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100850 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000851 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200852 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000853 SvRV(rv) = ptr->b_perl_private;
854 SvROK_on(rv);
855 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
856}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200858#if 0
859SV *__sv_save[1024];
860int __sv_save_ix;
861# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
862#else
863# define D_Save_Sv(sv) NOOP
864#endif
865
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866/*
867 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200868 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869 */
870 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100871perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200873 if (wp->w_perl_private && perl_interp != NULL)
874 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200875 SV *sv = (SV*)wp->w_perl_private;
876 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200877 sv_setiv(sv, 0);
878 SvREFCNT_dec(sv);
879 }
880 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881}
882
883 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100884perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200886 if (bp->b_perl_private && perl_interp != NULL)
887 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200888 SV *sv = (SV *)bp->b_perl_private;
889 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200890 sv_setiv(sv, 0);
891 SvREFCNT_dec(sv);
892 }
893 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894}
895
896#ifndef PROTO
897# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
898I32 cur_val(pTHX_ IV iv, SV *sv);
899# else
900I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200901# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902
903/*
904 * Handler for the magic variables $main::curwin and $main::curbuf.
905 * The handler is put into the magic vtbl for these variables.
906 * (This is effectively a C-level equivalent of a tied variable).
907 * There is no "set" function as the variables are read-only.
908 */
909# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
910I32 cur_val(pTHX_ IV iv, SV *sv)
911# else
912I32 cur_val(IV iv, SV *sv)
913# endif
914{
915 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200916
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 if (iv == 0)
918 rv = newWINrv(newSV(0), curwin);
919 else
920 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200921
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200922 if (SvRV(sv) != SvRV(rv))
923 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100924 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200925 sv_setsv(sv, rv);
926
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200927 SvREFCNT_dec(rv);
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929 return 0;
930}
931#endif /* !PROTO */
932
933struct ufuncs cw_funcs = { cur_val, 0, 0 };
934struct ufuncs cb_funcs = { cur_val, 0, 1 };
935
936/*
937 * VIM_init(): Vim-specific initialisation.
938 * Make the magical main::curwin and main::curbuf variables
939 */
940 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100941VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942{
943 static char cw[] = "main::curwin";
944 static char cb[] = "main::curbuf";
945 SV *sv;
946
947 sv = perl_get_sv(cw, TRUE);
948 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
949 SvREADONLY_on(sv);
950
951 sv = perl_get_sv(cb, TRUE);
952 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
953 SvREADONLY_on(sv);
954
955 /*
956 * Setup the Safe compartment.
957 * It shouldn't be a fatal error if the Safe module is missing.
958 * XXX: Only shares the 'Msg' routine (which has to be called
959 * like 'Msg(...)').
960 */
961 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
962
963}
964
965#ifdef DYNAMIC_PERL
966static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
967#endif
968
969/*
970 * ":perl"
971 */
972 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100973ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974{
975 char *err;
976 char *script;
977 STRLEN length;
978 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200979#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200981#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982
983 script = (char *)script_get(eap, eap->arg);
984 if (eap->skip)
985 {
986 vim_free(script);
987 return;
988 }
989
990 if (perl_interp == NULL)
991 {
992#ifdef DYNAMIC_PERL
993 if (!perl_enabled(TRUE))
994 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100995 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 vim_free(script);
997 return;
998 }
999#endif
1000 perl_init();
1001 }
1002
1003 {
1004 dSP;
1005 ENTER;
1006 SAVETMPS;
1007
1008 if (script == NULL)
1009 sv = newSVpv((char *)eap->arg, 0);
1010 else
1011 {
1012 sv = newSVpv(script, 0);
1013 vim_free(script);
1014 }
1015
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001016 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001018 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001019# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001020 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001021 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001023# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 {
1025 PUSHMARK(SP);
1026 XPUSHs(safe);
1027 XPUSHs(sv);
1028 PUTBACK;
1029 perl_call_method("reval", G_DISCARD);
1030 }
1031 }
1032 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001033 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1034
1035 SvREFCNT_dec(sv);
1036
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001037 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038
1039 FREETMPS;
1040 LEAVE;
1041
1042 if (!length)
1043 return;
1044
1045 msg_split((char_u *)err, highlight_attr[HLF_E]);
1046 return;
1047 }
1048}
1049
1050 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001051replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052{
1053 char *str;
1054
1055 if (SvOK(GvSV(PL_defgv)))
1056 {
1057 str = SvPV(GvSV(PL_defgv), PL_na);
1058 ml_replace(*line, (char_u *)str, 1);
1059 changed_bytes(*line, 0);
1060 }
1061 else
1062 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001063 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 deleted_lines_mark(*line, 1L);
1065 --(*end);
1066 --(*line);
1067 }
1068 return OK;
1069}
1070
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001071static struct ref_map_S {
1072 void *vim_ref;
1073 SV *perl_ref;
1074 struct ref_map_S *next;
1075} *ref_map = NULL;
1076
1077 static void
1078ref_map_free(void)
1079{
1080 struct ref_map_S *tofree;
1081 struct ref_map_S *refs = ref_map;
1082
1083 while (refs) {
1084 tofree = refs;
1085 refs = refs->next;
1086 vim_free(tofree);
1087 }
1088 ref_map = NULL;
1089}
1090
1091 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001092ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001093{
1094 struct ref_map_S *refs = ref_map;
1095 int count = 350;
1096
1097 while (refs) {
1098 if (refs->perl_ref == sv)
1099 break;
1100 refs = refs->next;
1101 count--;
1102 }
1103
1104 if (!refs && count > 0) {
1105 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1106 if (!refs)
1107 return NULL;
1108 refs->perl_ref = sv;
1109 refs->vim_ref = NULL;
1110 refs->next = ref_map;
1111 ref_map = refs;
1112 }
1113
1114 return refs;
1115}
1116
1117 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001118perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001119{
1120 if (SvROK(sv))
1121 sv = SvRV(sv);
1122
1123 switch (SvTYPE(sv)) {
1124 case SVt_NULL:
1125 break;
1126 case SVt_NV: /* float */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001127 rettv->v_type = VAR_FLOAT;
1128 rettv->vval.v_float = SvNV(sv);
1129 break;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001130 case SVt_IV: /* integer */
1131 if (!SvROK(sv)) { /* references should be string */
1132 rettv->vval.v_number = SvIV(sv);
1133 break;
1134 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001135 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001136 case SVt_PV: /* string */
1137 {
1138 size_t len = 0;
1139 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001140 char_u *str_to = (char_u*)alloc(
1141 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001142
1143 if (str_to) {
1144 str_to[len] = '\0';
1145
1146 while (len--) {
1147 if (str_from[len] == '\0')
1148 str_to[len] = '\n';
1149 else
1150 str_to[len] = str_from[len];
1151 }
1152 }
1153
1154 rettv->v_type = VAR_STRING;
1155 rettv->vval.v_string = str_to;
1156 break;
1157 }
1158 case SVt_PVAV: /* list */
1159 {
1160 SSize_t size;
1161 listitem_T * item;
1162 SV ** item2;
1163 list_T * list;
1164 struct ref_map_S * refs;
1165
1166 if ((refs = ref_map_find_SV(sv)) == NULL)
1167 return FAIL;
1168
1169 if (refs->vim_ref)
1170 list = (list_T *) refs->vim_ref;
1171 else
1172 {
1173 if ((list = list_alloc()) == NULL)
1174 return FAIL;
1175 refs->vim_ref = list;
1176
1177 for (size = av_len((AV*)sv); size >= 0; size--)
1178 {
1179 if ((item = listitem_alloc()) == NULL)
1180 break;
1181
1182 item->li_tv.v_type = VAR_NUMBER;
1183 item->li_tv.v_lock = 0;
1184 item->li_tv.vval.v_number = 0;
1185 list_insert(list, item, list->lv_first);
1186
1187 item2 = av_fetch((AV *)sv, size, 0);
1188
1189 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001190 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001191 break;
1192 }
1193 }
1194
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001195 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001196 break;
1197 }
1198 case SVt_PVHV: /* dictionary */
1199 {
1200 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001201 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001202 char * key;
1203 dictitem_T * item;
1204 SV * item2;
1205 dict_T * dict;
1206 struct ref_map_S * refs;
1207
1208 if ((refs = ref_map_find_SV(sv)) == NULL)
1209 return FAIL;
1210
1211 if (refs->vim_ref)
1212 dict = (dict_T *) refs->vim_ref;
1213 else
1214 {
1215
1216 if ((dict = dict_alloc()) == NULL)
1217 return FAIL;
1218 refs->vim_ref = dict;
1219
1220 hv_iterinit((HV *)sv);
1221
1222 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1223 {
1224 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001225 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001226
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001227 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001228 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001229 break;
1230 }
1231
1232 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1233 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001234 item->di_tv.v_type = VAR_NUMBER;
1235 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001236
1237 if (dict_add(dict, item) == FAIL) {
1238 dictitem_free(item);
1239 break;
1240 }
1241 item2 = hv_iterval((HV *)sv, entry);
1242 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1243 break;
1244 }
1245 }
1246
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001247 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001248 break;
1249 }
1250 default: /* not convertible */
1251 {
1252 char *val = SvPV_nolen(sv);
1253 rettv->v_type = VAR_STRING;
1254 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1255 break;
1256 }
1257 }
1258 return OK;
1259}
1260
1261/*
1262 * "perleval()"
1263 */
1264 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001265do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001266{
1267 char *err = NULL;
1268 STRLEN err_len = 0;
1269 SV *sv = NULL;
1270#ifdef HAVE_SANDBOX
1271 SV *safe;
1272#endif
1273
1274 if (perl_interp == NULL)
1275 {
1276#ifdef DYNAMIC_PERL
1277 if (!perl_enabled(TRUE))
1278 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001279 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001280 return;
1281 }
1282#endif
1283 perl_init();
1284 }
1285
1286 {
1287 dSP;
1288 ENTER;
1289 SAVETMPS;
1290
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001291 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001292 {
1293 safe = get_sv("VIM::safe", FALSE);
1294# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1295 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001296 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001297 else
1298# endif
1299 {
1300 sv = newSVpv((char *)str, 0);
1301 PUSHMARK(SP);
1302 XPUSHs(safe);
1303 XPUSHs(sv);
1304 PUTBACK;
1305 call_method("reval", G_SCALAR);
1306 SPAGAIN;
1307 SvREFCNT_dec(sv);
1308 sv = POPs;
Bram Moolenaar0f267622022-05-10 13:32:24 +01001309 PUTBACK;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001310 }
1311 }
1312 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001313 sv = eval_pv((char *)str, 0);
1314
1315 if (sv) {
1316 perl_to_vim(sv, rettv);
1317 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001318 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001319 }
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001320 FREETMPS;
1321 LEAVE;
1322 }
1323 if (err_len)
1324 msg_split((char_u *)err, highlight_attr[HLF_E]);
1325}
1326
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327/*
1328 * ":perldo".
1329 */
1330 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001331ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332{
1333 STRLEN length;
1334 SV *sv;
1335 char *str;
1336 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001337 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001339 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 return;
1341
1342 if (perl_interp == NULL)
1343 {
1344#ifdef DYNAMIC_PERL
1345 if (!perl_enabled(TRUE))
1346 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001347 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 return;
1349 }
1350#endif
1351 perl_init();
1352 }
1353 {
1354 dSP;
1355 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001356 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1357 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 sv_catpvn(sv, (char *)eap->arg, length);
1359 sv_catpvn(sv, "}", 1);
1360 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1361 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001362 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363 if (length)
1364 goto err;
1365
1366 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1367 return;
1368
1369 ENTER;
1370 SAVETMPS;
1371 for (i = eap->line1; i <= eap->line2; i++)
1372 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001373 /* Check the line number, the command my have deleted lines. */
1374 if (i > curbuf->b_ml.ml_line_count)
1375 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001376 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 PUSHMARK(sp);
1378 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001379 str = SvPV(GvSV(PL_errgv), length);
zeertzjqe99f0682024-01-29 19:32:39 +01001380 if (length || curbuf != was_curbuf || i > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 break;
1382 SPAGAIN;
1383 if (SvTRUEx(POPs))
1384 {
1385 if (replace_line(&i, &eap->line2) != OK)
1386 {
1387 PUTBACK;
1388 break;
1389 }
1390 }
1391 PUTBACK;
1392 }
1393 FREETMPS;
1394 LEAVE;
1395 check_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001396 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 if (!length)
1398 return;
1399
1400err:
1401 msg_split((char_u *)str, highlight_attr[HLF_E]);
1402 return;
1403 }
1404}
1405
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001406#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1407typedef struct {
1408 struct _PerlIO base;
1409 int attr;
1410} PerlIOVim;
1411
1412 static IV
1413PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1414 SV *arg, PerlIO_funcs *tab)
1415{
1416 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1417 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001418 if (arg && SvPOK(arg))
1419 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001420 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1421}
1422
1423 static SSize_t
1424PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1425{
1426 char_u *str;
1427 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1428
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001429 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001430 if (str == NULL)
1431 return 0;
1432 msg_split((char_u *)str, s->attr);
1433 vim_free(str);
1434
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001435 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001436}
1437
1438static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1439 sizeof(PerlIO_funcs),
1440 "Vim",
1441 sizeof(PerlIOVim),
1442 PERLIO_K_DUMMY, /* flags */
1443 PerlIOVim_pushed,
1444 NULL, /* popped */
1445 NULL, /* open */
1446 NULL, /* binmode */
1447 NULL, /* arg */
1448 NULL, /* fileno */
1449 NULL, /* dup */
1450 NULL, /* read */
1451 NULL, /* unread */
1452 PerlIOVim_write,
1453 NULL, /* seek */
1454 NULL, /* tell */
1455 NULL, /* close */
1456 NULL, /* flush */
1457 NULL, /* fill */
1458 NULL, /* eof */
1459 NULL, /* error */
1460 NULL, /* clearerr */
1461 NULL, /* setlinebuf */
1462 NULL, /* get_base */
1463 NULL, /* get_bufsiz */
1464 NULL, /* get_ptr */
1465 NULL, /* get_cnt */
1466 NULL /* set_ptrcnt */
1467};
1468
1469/* Use Vim routine for print operator */
1470 static void
1471vim_IOLayer_init(void)
1472{
1473 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1474 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1475 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1476}
1477#endif /* PERLIO_LAYERS && !USE_SFIO */
1478
Christian Brabandt55460da2023-08-29 21:31:28 +02001479#ifdef DYNAMIC_PERL
1480
1481// Certain functionality that we use like SvREFCNT_dec are inlined for
1482// performance reasons. They reference Perl APIs like Perl_sv_free2(), which
1483// would cause linking errors in dynamic builds as we don't link against Perl
1484// during build time. Manually fix it here by redirecting these functions
1485// towards the dynamically loaded version.
1486
Drew Vogel97baa1c2025-02-10 20:17:56 +01001487# if (PERL_REVISION == 5) && (PERL_VERSION >= 38)
1488# undef Perl_croak_nocontext
1489void Perl_croak_nocontext(const char *pat, ...)
1490{
1491 dTHX;
1492 va_list args;
1493 va_start(args, pat);
1494 (*dll_Perl_croak_nocontext)(pat, &args);
1495 NOT_REACHED; /* NOTREACHED */
1496 va_end(args);
1497}
1498# endif
1499
Christian Brabandt55460da2023-08-29 21:31:28 +02001500# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
1501# undef Perl_sv_free2
Ken Takata2b126a62023-10-18 11:59:44 +02001502void Perl_sv_free2(pTHX_ SV *const sv, const U32 refcnt)
Christian Brabandt55460da2023-08-29 21:31:28 +02001503{
1504 (*dll_Perl_sv_free2)(aTHX_ sv, refcnt);
1505}
1506# else
1507# undef Perl_sv_free2
1508void Perl_sv_free2(pTHX_ SV* sv)
1509{
1510 (*dll_Perl_sv_free2)(aTHX_ sv);
1511}
1512# endif
1513
1514# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
1515# undef Perl_sv_2bool_flags
1516bool Perl_sv_2bool_flags(pTHX_ SV* sv, I32 flags)
1517{
1518 return (*dll_Perl_sv_2bool_flags)(aTHX_ sv, flags);
1519}
1520# endif
1521
1522# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
1523# undef Perl_mg_get
1524int Perl_mg_get(pTHX_ SV* sv)
1525{
1526 return (*dll_Perl_mg_get)(aTHX_ sv);
1527}
1528# endif
1529
1530# undef Perl_sv_2nv_flags
1531NV Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
1532{
1533 return (*dll_Perl_sv_2nv_flags)(aTHX_ sv, flags);
1534}
1535
1536# ifdef PERL589_OR_LATER
1537# undef Perl_sv_2iv_flags
Ken Takata2b126a62023-10-18 11:59:44 +02001538IV Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
Christian Brabandt55460da2023-08-29 21:31:28 +02001539{
1540 return (*dll_Perl_sv_2iv_flags)(aTHX_ sv, flags);
1541}
1542# endif
1543
Christian Brabandt55460da2023-08-29 21:31:28 +02001544#endif // DYNAMIC_PERL
1545
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546XS(boot_VIM);
1547
1548 static void
1549xs_init(pTHX)
1550{
1551 char *file = __FILE__;
1552
1553 /* DynaLoader is a special case */
1554 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1555 newXS("VIM::bootstrap", boot_VIM, file);
1556}
1557
1558typedef win_T * VIWIN;
1559typedef buf_T * VIBUF;
1560
1561MODULE = VIM PACKAGE = VIM
1562
1563void
1564Msg(text, hl=NULL)
1565 char *text;
1566 char *hl;
1567
1568 PREINIT:
1569 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570
1571 PPCODE:
1572 if (text != NULL)
1573 {
1574 attr = 0;
1575 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001576 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 msg_split((char_u *)text, attr);
1578 }
1579
1580void
1581SetOption(line)
1582 char *line;
1583
1584 PPCODE:
1585 if (line != NULL)
1586 do_set((char_u *)line, 0);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001587 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001588
1589void
1590DoCommand(line)
1591 char *line;
1592
1593 PPCODE:
1594 if (line != NULL)
1595 do_cmdline_cmd((char_u *)line);
1596
1597void
1598Eval(str)
1599 char *str;
1600
1601 PREINIT:
1602 char_u *value;
1603 PPCODE:
Bram Moolenaara4e0b972022-10-01 19:43:52 +01001604 value = eval_to_string((char_u *)str, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 if (value == NULL)
1606 {
1607 XPUSHs(sv_2mortal(newSViv(0)));
1608 XPUSHs(sv_2mortal(newSVpv("", 0)));
1609 }
1610 else
1611 {
1612 XPUSHs(sv_2mortal(newSViv(1)));
1613 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1614 vim_free(value);
1615 }
1616
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001617SV*
1618Blob(SV* sv)
1619 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001620 STRLEN len;
1621 char *s;
1622 unsigned i;
1623 char buf[3];
1624 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001625
1626 CODE:
1627 s = SvPVbyte(sv, len);
1628 newsv = newSVpv("0z", 2);
1629 for (i = 0; i < len; i++)
1630 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001631 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001632 sv_catpvn(newsv, buf, 2);
1633 }
1634 RETVAL = newsv;
1635 OUTPUT:
1636 RETVAL
1637
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638void
1639Buffers(...)
1640
1641 PREINIT:
1642 buf_T *vimbuf;
1643 int i, b;
1644
1645 PPCODE:
1646 if (items == 0)
1647 {
Philip H1d7caa52023-06-22 08:55:47 +02001648 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 {
1650 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001651 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001652 ++i;
1653
1654 XPUSHs(sv_2mortal(newSViv(i)));
1655 }
1656 else
1657 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001658 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001659 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 }
1661 }
1662 else
1663 {
1664 for (i = 0; i < items; i++)
1665 {
1666 SV *sv = ST(i);
1667 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001668 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 else
1670 {
1671 char_u *pat;
1672 STRLEN len;
1673
1674 pat = (char_u *)SvPV(sv, len);
1675 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001676 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 --emsg_off;
1678 }
1679
1680 if (b >= 0)
1681 {
1682 vimbuf = buflist_findnr(b);
1683 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001684 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 }
1687 }
1688
1689void
1690Windows(...)
1691
1692 PREINIT:
1693 win_T *vimwin;
1694 int i, w;
1695
1696 PPCODE:
1697 if (items == 0)
1698 {
Philip H1d7caa52023-06-22 08:55:47 +02001699 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 XPUSHs(sv_2mortal(newSViv(win_count())));
1701 else
1702 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001703 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001704 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705 }
1706 }
1707 else
1708 {
1709 for (i = 0; i < items; i++)
1710 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001711 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 vimwin = win_find_nr(w);
1713 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001714 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 }
1716 }
1717
1718MODULE = VIM PACKAGE = VIWIN
1719
1720void
1721DESTROY(win)
1722 VIWIN win
1723
1724 CODE:
1725 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001726 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727
1728SV *
1729Buffer(win)
1730 VIWIN win
1731
1732 CODE:
1733 if (!win_valid(win))
1734 win = curwin;
1735 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1736 OUTPUT:
1737 RETVAL
1738
1739void
1740SetHeight(win, height)
1741 VIWIN win
1742 int height;
1743
1744 PREINIT:
1745 win_T *savewin;
1746
1747 PPCODE:
1748 if (!win_valid(win))
1749 win = curwin;
1750 savewin = curwin;
1751 curwin = win;
1752 win_setheight(height);
1753 curwin = savewin;
1754
1755void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001756Cursor(win, ...)
1757 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758
1759 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001760 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 {
1762 EXTEND(sp, 2);
1763 if (!win_valid(win))
1764 win = curwin;
1765 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1766 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1767 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001768 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 {
1770 int lnum, col;
1771
1772 if (!win_valid(win))
1773 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001774 lnum = (int) SvIV(ST(1));
1775 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 win->w_cursor.lnum = lnum;
1777 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001778 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 check_cursor(); /* put cursor on an existing line */
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001780 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781 }
1782
1783MODULE = VIM PACKAGE = VIBUF
1784
1785void
1786DESTROY(vimbuf)
1787 VIBUF vimbuf;
1788
1789 CODE:
1790 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001791 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
1793void
1794Name(vimbuf)
1795 VIBUF vimbuf;
1796
1797 PPCODE:
1798 if (!buf_valid(vimbuf))
1799 vimbuf = curbuf;
1800 /* No file name returns an empty string */
1801 if (vimbuf->b_fname == NULL)
1802 XPUSHs(sv_2mortal(newSVpv("", 0)));
1803 else
1804 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1805
1806void
1807Number(vimbuf)
1808 VIBUF vimbuf;
1809
1810 PPCODE:
1811 if (!buf_valid(vimbuf))
1812 vimbuf = curbuf;
1813 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1814
1815void
1816Count(vimbuf)
1817 VIBUF vimbuf;
1818
1819 PPCODE:
1820 if (!buf_valid(vimbuf))
1821 vimbuf = curbuf;
1822 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1823
1824void
1825Get(vimbuf, ...)
1826 VIBUF vimbuf;
1827
1828 PREINIT:
1829 char_u *line;
1830 int i;
1831 long lnum;
1832 PPCODE:
1833 if (buf_valid(vimbuf))
1834 {
1835 for (i = 1; i < items; i++)
1836 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001837 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1839 {
1840 line = ml_get_buf(vimbuf, lnum, FALSE);
1841 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1842 }
1843 }
1844 }
1845
1846void
1847Set(vimbuf, ...)
1848 VIBUF vimbuf;
1849
1850 PREINIT:
1851 int i;
1852 long lnum;
1853 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854 PPCODE:
1855 if (buf_valid(vimbuf))
1856 {
1857 if (items < 3)
1858 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1859
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001860 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 for(i = 2; i < items; i++, lnum++)
1862 {
1863 line = SvPV(ST(i),PL_na);
1864 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1865 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001866 aco_save_T aco;
1867
Bram Moolenaare76062c2022-11-28 18:51:43 +00001868 /* Set curwin/curbuf for "vimbuf" and save some things. */
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001869 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001870 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001872 /* Only when a window was found. */
1873 if (u_savesub(lnum) == OK)
1874 {
1875 ml_replace(lnum, (char_u *)line, TRUE);
1876 changed_bytes(lnum, 0);
1877 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001878
Bram Moolenaare76062c2022-11-28 18:51:43 +00001879 /* restore curwin/curbuf and a few other things */
1880 aucmd_restbuf(&aco);
1881 /* Careful: autocommands may have made "vimbuf" invalid! */
1882 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001883 }
1884 }
1885 }
1886
1887void
1888Delete(vimbuf, ...)
1889 VIBUF vimbuf;
1890
1891 PREINIT:
1892 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 PPCODE:
1894 if (buf_valid(vimbuf))
1895 {
1896 if (items == 2)
1897 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001898 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 count = 1;
1900 }
1901 else if (items == 3)
1902 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001903 lnum = (long) SvIV(ST(1));
1904 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001905 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001907 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 {
1909 lnum -= count;
1910 count = -count;
1911 }
1912 }
1913 if (items >= 2)
1914 {
1915 for (i = 0; i < count; i++)
1916 {
1917 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1918 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001919 aco_save_T aco;
1920
1921 /* set curwin/curbuf for "vimbuf" and save some things */
1922 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001923 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001925 /* Only when a window was found. */
1926 if (u_savedel(lnum, 1) == OK)
1927 {
1928 ml_delete(lnum);
1929 check_cursor();
1930 deleted_lines_mark(lnum, 1L);
1931 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001932
Bram Moolenaare76062c2022-11-28 18:51:43 +00001933 /* restore curwin/curbuf and a few other things */
1934 aucmd_restbuf(&aco);
1935 /* Careful: autocommands may have made "vimbuf"
1936 * invalid! */
1937 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001938
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001939 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 }
1941 }
1942 }
1943 }
1944
1945void
1946Append(vimbuf, ...)
1947 VIBUF vimbuf;
1948
1949 PREINIT:
1950 int i;
1951 long lnum;
1952 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 PPCODE:
1954 if (buf_valid(vimbuf))
1955 {
1956 if (items < 3)
1957 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1958
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001959 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 for (i = 2; i < items; i++, lnum++)
1961 {
1962 line = SvPV(ST(i),PL_na);
1963 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1964 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001965 aco_save_T aco;
1966
1967 /* set curwin/curbuf for "vimbuf" and save some things */
1968 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001969 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001971 /* Only when a window for "vimbuf" was found. */
1972 if (u_inssub(lnum + 1) == OK)
1973 {
1974 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1975 appended_lines_mark(lnum, 1L);
1976 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001977
Bram Moolenaare76062c2022-11-28 18:51:43 +00001978 /* restore curwin/curbuf and a few other things */
1979 aucmd_restbuf(&aco);
1980 /* Careful: autocommands may have made "vimbuf" invalid! */
1981 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001982
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001983 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 }
1985 }
1986 }
1987
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001988#ifdef __GNUC__
1989# pragma GCC diagnostic pop
1990#endif