blob: d88c3f3d99cbea6d0f2149fe74c1069096fe2453 [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 Moolenaar6b107212013-12-11 15:06:40 +010027/*
28 * Prevent including winsock.h. perl.h tries to detect whether winsock.h is
29 * already included before including winsock2.h, because winsock2.h isn't
30 * compatible with winsock.h. However the detection doesn't work with some
31 * versions of MinGW. If WIN32_LEAN_AND_MEAN is defined, windows.h will not
32 * include winsock.h.
33 */
34#ifdef WIN32
35# define WIN32_LEAN_AND_MEAN
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "vim.h"
39
Bram Moolenaar207fd752013-12-14 11:50:35 +010040#ifdef _MSC_VER
Bram Moolenaar02890652020-10-31 13:05:11 +010041// Work around for using MSVC and ActivePerl 5.18.
Bram Moolenaar207fd752013-12-14 11:50:35 +010042# define __inline__ __inline
Bram Moolenaare73b38f2020-01-06 21:22:09 +010043// Work around for using MSVC and Strawberry Perl 5.30.
44# define __builtin_expect(expr, val) (expr)
Bram Moolenaar02890652020-10-31 13:05:11 +010045// Work around for using MSVC and Strawberry Perl 5.32.
46# define NO_THREAD_SAFE_LOCALE
Bram Moolenaar207fd752013-12-14 11:50:35 +010047#endif
48
Ken Takata2b126a62023-10-18 11:59:44 +020049#if defined(MSWIN) && defined(DYNAMIC_PERL)
50// Work around for warning C4273 (inconsistent DLL linkage).
51# define PERL_EXT_RE_BUILD
52#endif
53
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010054#ifdef __GNUC__
55# pragma GCC diagnostic push
56# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010057#endif
58
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020059#include <EXTERN.h>
60#include <perl.h>
61#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020062#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
63# include <perliol.h>
64#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
Bram Moolenaarcf190c62016-06-02 11:54:06 +020066/* Workaround for perl < 5.8.7 */
67#ifndef PERLIO_FUNCS_DECL
68# ifdef PERLIO_FUNCS_CONST
69# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
70# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
71# else
72# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
73# define PERLIO_FUNCS_CAST(funcs) (funcs)
74# endif
75#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020076#ifndef SvREFCNT_inc_void_NN
77# define SvREFCNT_inc_void_NN SvREFCNT_inc
78#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020079
Bram Moolenaar071d4272004-06-13 20:20:40 +000080/*
81 * Work around clashes between Perl and Vim namespace. proto.h doesn't
82 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
83 * we need the CV typedef. proto.h can't be moved to after including
84 * if_perl.h, because we get all sorts of name clashes then.
85 */
86#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020087# ifndef __MINGW32__
88# include "proto/if_perl.pro"
89# include "proto/if_perlsfio.pro"
90# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#endif
92
Bram Moolenaar1f402802018-09-21 14:01:27 +020093// Perl compatibility stuff. This should ensure compatibility with older
94// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020096# include <patchlevel.h>
97# define PERL_REVISION 5
98# define PERL_VERSION PATCHLEVEL
99# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#endif
101
Bram Moolenaar1f402802018-09-21 14:01:27 +0200102
103// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
104#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100105 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +0200106# undef XS_EXTERNAL
107# define XS_EXTERNAL(name) XSPROTO(name)
108#endif
109
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000110/*
111 * Quoting Jan Dubois of Active State:
112 * ActivePerl build 822 still identifies itself as 5.8.8 but already
113 * contains many of the changes from the upcoming Perl 5.8.9 release.
114 *
115 * The changes include addition of two symbols (Perl_sv_2iv_flags,
116 * Perl_newXS_flags) not present in earlier releases.
117 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000118 * Jan Dubois suggested the following guarding scheme.
119 *
120 * Active State defined ACTIVEPERL_VERSION as a string in versions before
121 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000122 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000123#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
124# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
125# define PERL589_OR_LATER
126# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000127#endif
128#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
129# define PERL589_OR_LATER
130#endif
131
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100132#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
133 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
134# define PERL5101_OR_LATER
135#endif
136
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200138# define pTHX void
139# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140#endif
141
142#ifndef EXTERN_C
143# define EXTERN_C
144#endif
145
Philip H53752052022-11-04 22:32:21 +0000146// Suppress Infinite warnings when compiling XS modules under macOS 12 Monterey.
147#if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11
K.Takata161b6ac2022-11-14 15:31:07 +0000148# pragma clang diagnostic ignored "-Wcompound-token-split-by-macro"
Philip H53752052022-11-04 22:32:21 +0000149#endif
150
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151/* Compatibility hacks over */
152
153static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100154static void xs_init(pTHX);
155static void VIM_init(void);
156EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157
158/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200159 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160 */
161#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200162
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200163# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100164# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200165typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200166# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200167typedef int XSINIT_t;
168typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200169# endif
170# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200171typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200172# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200173
Ken Takatac97b3fe2023-10-11 21:27:06 +0200174# ifdef MSWIN
175# define PERL_PROC FARPROC
176# define load_dll vimLoadLib
177# define symbol_from_dll GetProcAddress
178# define close_dll FreeLibrary
179# define load_dll_error GetWin32Error
180# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200181# include <dlfcn.h>
182# define HANDLE void*
183# define PERL_PROC void*
184# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
185# define symbol_from_dll dlsym
186# define close_dll dlclose
Martin Tournoij1a3e5742021-07-24 13:57:29 +0200187# define load_dll_error dlerror
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189/*
190 * Wrapper defines
191 */
192# define perl_alloc dll_perl_alloc
193# define perl_construct dll_perl_construct
194# define perl_parse dll_perl_parse
195# define perl_run dll_perl_run
196# define perl_destruct dll_perl_destruct
197# define perl_free dll_perl_free
Christian Brabandt55460da2023-08-29 21:31:28 +0200198# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
199# define Perl_get_context dll_Perl_get_context
200# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100202# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100203# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
204# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205# ifndef PROTO
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200206# ifdef PERL_IMPLICIT_CONTEXT
207# define Perl_croak_nocontext dll_Perl_croak_nocontext
208# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209# define Perl_call_argv dll_Perl_call_argv
210# define Perl_call_pv dll_Perl_call_pv
211# define Perl_eval_sv dll_Perl_eval_sv
212# define Perl_get_sv dll_Perl_get_sv
213# define Perl_eval_pv dll_Perl_eval_pv
214# define Perl_call_method dll_Perl_call_method
215# endif
216# define Perl_dowantarray dll_Perl_dowantarray
217# define Perl_free_tmps dll_Perl_free_tmps
218# define Perl_gv_stashpv dll_Perl_gv_stashpv
219# define Perl_markstack_grow dll_Perl_markstack_grow
220# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200221# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
222# define Perl_mg_get dll_Perl_mg_get
223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# define Perl_newXS dll_Perl_newXS
225# define Perl_newSV dll_Perl_newSV
226# define Perl_newSViv dll_Perl_newSViv
227# define Perl_newSVpv dll_Perl_newSVpv
228# define Perl_pop_scope dll_Perl_pop_scope
229# define Perl_push_scope dll_Perl_push_scope
230# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200231# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
232# define Perl_save_strlen dll_Perl_save_strlen
233# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234# define Perl_stack_grow dll_Perl_stack_grow
235# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200236# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200237# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
238# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
239# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
240# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200241# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200242# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200243# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000244# define Perl_sv_2iv dll_Perl_sv_2iv
245# define Perl_sv_2mortal dll_Perl_sv_2mortal
246# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
247# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
248# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
249# else
250# define Perl_sv_2pv dll_Perl_sv_2pv
251# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200252# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
253# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
254# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100255# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256# define Perl_sv_bless dll_Perl_sv_bless
257# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
258# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
259# else
260# define Perl_sv_catpvn dll_Perl_sv_catpvn
261# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200262# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000263# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
264# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200265# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000267# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
268# define Perl_sv_free2 dll_Perl_sv_free2
269# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270# define Perl_sv_isa dll_Perl_sv_isa
271# define Perl_sv_magic dll_Perl_sv_magic
272# define Perl_sv_setiv dll_Perl_sv_setiv
273# define Perl_sv_setpv dll_Perl_sv_setpv
274# define Perl_sv_setpvn dll_Perl_sv_setpvn
275# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
276# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
277# else
278# define Perl_sv_setsv dll_Perl_sv_setsv
279# endif
280# define Perl_sv_upgrade dll_Perl_sv_upgrade
281# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
282# define Perl_Top_ptr dll_Perl_Top_ptr
283# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
284# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
285# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
286# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
287# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
288# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
289# define Perl_TSv_ptr dll_Perl_TSv_ptr
290# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
291# define Perl_Tna_ptr dll_Perl_Tna_ptr
292# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
293# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
294# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
295# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200296# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000298# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000299# define Perl_sys_term dll_Perl_sys_term
300# define Perl_ISv_ptr dll_Perl_ISv_ptr
301# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
302# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
303# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
304# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
305# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
306# define Perl_Ina_ptr dll_Perl_Ina_ptr
307# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
308# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
309# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
310# define Perl_Iop_ptr dll_Perl_Iop_ptr
311# define Perl_call_list dll_Perl_call_list
312# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
313# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200314# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
315# define Perl_xs_handshake dll_Perl_xs_handshake
316# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
317# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200318# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100319# ifdef USE_ITHREADS
320# define PL_thr_key *dll_PL_thr_key
321# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200322# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200323# ifdef PERL_USE_THREAD_LOCAL
324# define PL_current_context *dll_PL_current_context
325# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100326# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
327# define Perl_hv_iterinit dll_Perl_hv_iterinit
328# define Perl_hv_iterkey dll_Perl_hv_iterkey
329# define Perl_hv_iterval dll_Perl_hv_iterval
330# define Perl_av_fetch dll_Perl_av_fetch
331# define Perl_av_len dll_Perl_av_len
332# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200333# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
334# define PerlIOBase_pushed dll_PerlIOBase_pushed
335# define PerlIO_define_layer dll_PerlIO_define_layer
336# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200337# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
338# define Perl_savetmps dll_Perl_savetmps
339# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000340
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341/*
342 * Declare HANDLE for perl.dll and function pointers.
343 */
344static HANDLE hPerlLib = NULL;
345
Yee Cheng Chinf7f746b2023-09-30 12:28:50 +0200346static PerlInterpreter* (*perl_alloc)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347static void (*perl_construct)(PerlInterpreter*);
348static void (*perl_destruct)(PerlInterpreter*);
349static void (*perl_free)(PerlInterpreter*);
350static int (*perl_run)(PerlInterpreter*);
351static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
Christian Brabandt55460da2023-08-29 21:31:28 +0200352# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353static void* (*Perl_get_context)(void);
Christian Brabandt55460da2023-08-29 21:31:28 +0200354# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200355static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200356# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100357/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200358# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200359static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
360 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200361# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200362static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
363 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200364# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100365# endif
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200366# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar864733a2016-04-02 14:18:01 +0200367static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static I32 (*Perl_dowantarray)(pTHX);
370static void (*Perl_free_tmps)(pTHX);
371static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200372# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200373static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200374# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200378# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
379static int (*Perl_mg_get)(pTHX_ SV*);
380# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
382static SV* (*Perl_newSV)(pTHX_ STRLEN);
383static SV* (*Perl_newSViv)(pTHX_ IV);
384static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
385static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
386static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
387static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
388static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
389static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
390static SV* (*Perl_call_method)(pTHX_ const char*, I32);
391static void (*Perl_pop_scope)(pTHX);
392static void (*Perl_push_scope)(pTHX);
393static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200394# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200395static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200396# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
398static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200399# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200400static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200402static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200403# endif
404# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200406# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static IV (*Perl_sv_2iv)(pTHX_ SV*);
408static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200409# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Philip H1d7caa52023-06-22 08:55:47 +0200410static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200412# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100415static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200416# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
Philip H1d7caa52023-06-22 08:55:47 +0200417static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200418# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200420# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200422# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200424# endif
425# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000426static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
427static 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 +0200428# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429static void (*Perl_sv_free)(pTHX_ SV*);
430static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
431static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
432static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
433static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
434static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200435# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200437# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200439# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200441# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
443static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
444static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
445static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
446static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
447static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
448static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
449static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
450static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
451static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
452static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100453# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200454/* Perl-5.18 has a different Perl_sv_free2 signature. */
455# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
456static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
457# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000458static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200459# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000460static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000461static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200462static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200463# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
464# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000465static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
466static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
467static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
468static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
469static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
470static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
471static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
472static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
473static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
474static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
475static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000476static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
477static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200478# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200479# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200480# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200481static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
482static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100483# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200484
485# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
486# ifdef USE_ITHREADS
487static perl_key* dll_PL_thr_key;
488# endif
489# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200490static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
491static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
492static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200493static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200494# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200495# ifdef PERL_USE_THREAD_LOCAL
496static void** dll_PL_current_context;
497# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200498static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100499static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
500static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
501static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
502static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
503static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
504static SSize_t (*Perl_av_len)(pTHX_ AV *);
505static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200506# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200507static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
508static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200509# endif
510# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200511static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200512# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200513
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514/*
515 * Table of name to function pointer of perl.
516 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517static struct {
518 char* name;
519 PERL_PROC* ptr;
520} perl_funcname_table[] = {
521 {"perl_alloc", (PERL_PROC*)&perl_alloc},
522 {"perl_construct", (PERL_PROC*)&perl_construct},
523 {"perl_destruct", (PERL_PROC*)&perl_destruct},
524 {"perl_free", (PERL_PROC*)&perl_free},
525 {"perl_run", (PERL_PROC*)&perl_run},
526 {"perl_parse", (PERL_PROC*)&perl_parse},
Christian Brabandt55460da2023-08-29 21:31:28 +0200527# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
Christian Brabandt55460da2023-08-29 21:31:28 +0200529# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200531# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100532 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200533# endif
534# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200536# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
538 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
539 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
540 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
541 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200542# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
543 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
544# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
546 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
547 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
548 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
549 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
550 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
551 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
552 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
553 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
554 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
555 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
556 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
557 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200559 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200560# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
562 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200563# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200564 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200565# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200566 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200567# endif
568# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200570# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
572 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200573# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
575 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200576# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200578# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100579 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200580# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
581 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
582# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200583# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000584 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
585 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200586# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200588# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200590# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200592# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
594 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
595 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
596 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
597 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
598 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200599# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200601# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000602 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200603# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200605# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
607 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
608 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
609 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
610 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
611 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
612 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
613 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
614 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
615 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
616 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200617# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000618 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000619 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000620 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200621 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200622# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
623# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000624 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000625 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200626 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
627 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000628 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
629 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200630 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000631 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
632 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200633 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
634 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000635 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
636 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200637# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200638# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200639# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200640 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
641 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200642# endif
643# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100644# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200645 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100646# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200647# ifdef PERL_USE_THREAD_LOCAL
648 {"PL_current_context", (PERL_PROC*)&dll_PL_current_context},
649# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200650# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
652 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
653 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200654 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200655# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200656 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100657 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
658 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
659 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
660 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
661 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
662 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
663 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200664# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200665 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
666 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200667# endif
668# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200669 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200670# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 {"", NULL},
672};
673
Christian Brabandt55460da2023-08-29 21:31:28 +0200674# if (PERL_REVISION == 5) && (PERL_VERSION <= 30)
675// In 5.30, GIMME_V requires linking to Perl_block_gimme() instead of being
676// completely inline. Just use the deprecated GIMME for simplicity.
677# undef GIMME_V
678# define GIMME_V GIMME
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200679# endif
680
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681/*
682 * Make all runtime-links of perl.
683 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200684 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 * 2. Get pointer to perl function by GetProcAddress.
686 * 3. Repeat 2, until get all functions will be used.
687 *
688 * Parameter 'libname' provides name of DLL.
689 * Return OK or FAIL.
690 */
691 static int
692perl_runtime_link_init(char *libname, int verbose)
693{
694 int i;
695
696 if (hPerlLib != NULL)
697 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200698 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 {
700 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100701 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 return FAIL;
703 }
704 for (i = 0; perl_funcname_table[i].ptr; ++i)
705 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200706 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 perl_funcname_table[i].name)))
708 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200709 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 hPerlLib = NULL;
711 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000712 semsg((const char *)_(e_could_not_load_library_function_str), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 return FAIL;
714 }
715 }
716 return OK;
717}
718
719/*
720 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
721 * There were no DLL loaded, return FALSE.
722 */
723 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100724perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100726 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727}
728#endif /* DYNAMIC_PERL */
729
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200730#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
731static void vim_IOLayer_init(void);
732#endif
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734/*
735 * perl_init(): initialize perl interpreter
736 * We have to call perl_parse to initialize some structures,
737 * there's nothing to actually parse.
738 */
739 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100740perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000742 char *bootargs[] = { "VI", NULL };
743 int argc = 3;
744 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745
Bram Moolenaarc236c162008-07-13 17:41:49 +0000746#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000747 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 perl_interp = perl_alloc();
750 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000751 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
753 VIM_init();
754#ifdef USE_SFIO
755 sfdisc(PerlIO_stdout(), sfdcnewvim());
756 sfdisc(PerlIO_stderr(), sfdcnewvim());
757 sfsetbuf(PerlIO_stdout(), NULL, 0);
758 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200759#elif defined(PERLIO_LAYERS)
760 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761#endif
762}
763
764/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200765 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 */
767 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100768perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769{
770 if (perl_interp)
771 {
772 perl_run(perl_interp);
773 perl_destruct(perl_interp);
774 perl_free(perl_interp);
775 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000776#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100777 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000778#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780}
781
782/*
783 * msg_split(): send a message to the message handling routines
784 * split at '\n' first though.
785 */
786 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100787msg_split(
788 char_u *s,
789 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
791 char *next;
792 char *token = (char *)s;
793
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000794 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 {
796 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100797 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 token = next;
799 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000800 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100801 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802}
803
804#ifndef FEAT_EVAL
805/*
806 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
807 * work properly.
808 */
809 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100810eval_to_string(
811 char_u *arg UNUSED,
Bram Moolenaara4e0b972022-10-01 19:43:52 +0100812 int convert UNUSED,
813 int use_simple_function UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814{
815 return NULL;
816}
817#endif
818
819/*
820 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000821 * The b_perl_private/w_perl_private part of the SCR structure points to the
822 * SV, so there can only be one such SV for a particular SCR structure. When
823 * the last reference has gone (DESTROY is called),
824 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 * all references are gone, the value of the SV is reset;
826 * any subsequent use of any of those reference will produce
827 * a warning. (see typemap)
828 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000829
830 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100831newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000832{
833 sv_upgrade(rv, SVt_RV);
834 if (ptr->w_perl_private == NULL)
835 {
836 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100837 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000838 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200839 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000840 SvRV(rv) = ptr->w_perl_private;
841 SvROK_on(rv);
842 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843}
844
Bram Moolenaare344bea2005-09-01 20:46:49 +0000845 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100846newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000847{
848 sv_upgrade(rv, SVt_RV);
849 if (ptr->b_perl_private == NULL)
850 {
851 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100852 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000853 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200854 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000855 SvRV(rv) = ptr->b_perl_private;
856 SvROK_on(rv);
857 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
858}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200860#if 0
861SV *__sv_save[1024];
862int __sv_save_ix;
863# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
864#else
865# define D_Save_Sv(sv) NOOP
866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868/*
869 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200870 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 */
872 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100873perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200875 if (wp->w_perl_private && perl_interp != NULL)
876 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200877 SV *sv = (SV*)wp->w_perl_private;
878 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200879 sv_setiv(sv, 0);
880 SvREFCNT_dec(sv);
881 }
882 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883}
884
885 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100886perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200888 if (bp->b_perl_private && perl_interp != NULL)
889 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200890 SV *sv = (SV *)bp->b_perl_private;
891 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200892 sv_setiv(sv, 0);
893 SvREFCNT_dec(sv);
894 }
895 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896}
897
898#ifndef PROTO
899# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
900I32 cur_val(pTHX_ IV iv, SV *sv);
901# else
902I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200903# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904
905/*
906 * Handler for the magic variables $main::curwin and $main::curbuf.
907 * The handler is put into the magic vtbl for these variables.
908 * (This is effectively a C-level equivalent of a tied variable).
909 * There is no "set" function as the variables are read-only.
910 */
911# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
912I32 cur_val(pTHX_ IV iv, SV *sv)
913# else
914I32 cur_val(IV iv, SV *sv)
915# endif
916{
917 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200918
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 if (iv == 0)
920 rv = newWINrv(newSV(0), curwin);
921 else
922 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200923
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200924 if (SvRV(sv) != SvRV(rv))
925 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100926 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200927 sv_setsv(sv, rv);
928
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200929 SvREFCNT_dec(rv);
930
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 return 0;
932}
933#endif /* !PROTO */
934
935struct ufuncs cw_funcs = { cur_val, 0, 0 };
936struct ufuncs cb_funcs = { cur_val, 0, 1 };
937
938/*
939 * VIM_init(): Vim-specific initialisation.
940 * Make the magical main::curwin and main::curbuf variables
941 */
942 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100943VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944{
945 static char cw[] = "main::curwin";
946 static char cb[] = "main::curbuf";
947 SV *sv;
948
949 sv = perl_get_sv(cw, TRUE);
950 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
951 SvREADONLY_on(sv);
952
953 sv = perl_get_sv(cb, TRUE);
954 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
955 SvREADONLY_on(sv);
956
957 /*
958 * Setup the Safe compartment.
959 * It shouldn't be a fatal error if the Safe module is missing.
960 * XXX: Only shares the 'Msg' routine (which has to be called
961 * like 'Msg(...)').
962 */
963 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
964
965}
966
967#ifdef DYNAMIC_PERL
968static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
969#endif
970
971/*
972 * ":perl"
973 */
974 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100975ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976{
977 char *err;
978 char *script;
979 STRLEN length;
980 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200981#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984
985 script = (char *)script_get(eap, eap->arg);
986 if (eap->skip)
987 {
988 vim_free(script);
989 return;
990 }
991
992 if (perl_interp == NULL)
993 {
994#ifdef DYNAMIC_PERL
995 if (!perl_enabled(TRUE))
996 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100997 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 vim_free(script);
999 return;
1000 }
1001#endif
1002 perl_init();
1003 }
1004
1005 {
1006 dSP;
1007 ENTER;
1008 SAVETMPS;
1009
1010 if (script == NULL)
1011 sv = newSVpv((char *)eap->arg, 0);
1012 else
1013 {
1014 sv = newSVpv(script, 0);
1015 vim_free(script);
1016 }
1017
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001018 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001020 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001021# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001022 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001023 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001025# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 {
1027 PUSHMARK(SP);
1028 XPUSHs(safe);
1029 XPUSHs(sv);
1030 PUTBACK;
1031 perl_call_method("reval", G_DISCARD);
1032 }
1033 }
1034 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1036
1037 SvREFCNT_dec(sv);
1038
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001039 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
1041 FREETMPS;
1042 LEAVE;
1043
1044 if (!length)
1045 return;
1046
1047 msg_split((char_u *)err, highlight_attr[HLF_E]);
1048 return;
1049 }
1050}
1051
1052 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001053replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054{
1055 char *str;
1056
1057 if (SvOK(GvSV(PL_defgv)))
1058 {
1059 str = SvPV(GvSV(PL_defgv), PL_na);
1060 ml_replace(*line, (char_u *)str, 1);
1061 changed_bytes(*line, 0);
1062 }
1063 else
1064 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001065 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 deleted_lines_mark(*line, 1L);
1067 --(*end);
1068 --(*line);
1069 }
1070 return OK;
1071}
1072
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001073static struct ref_map_S {
1074 void *vim_ref;
1075 SV *perl_ref;
1076 struct ref_map_S *next;
1077} *ref_map = NULL;
1078
1079 static void
1080ref_map_free(void)
1081{
1082 struct ref_map_S *tofree;
1083 struct ref_map_S *refs = ref_map;
1084
1085 while (refs) {
1086 tofree = refs;
1087 refs = refs->next;
1088 vim_free(tofree);
1089 }
1090 ref_map = NULL;
1091}
1092
1093 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001094ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001095{
1096 struct ref_map_S *refs = ref_map;
1097 int count = 350;
1098
1099 while (refs) {
1100 if (refs->perl_ref == sv)
1101 break;
1102 refs = refs->next;
1103 count--;
1104 }
1105
1106 if (!refs && count > 0) {
1107 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1108 if (!refs)
1109 return NULL;
1110 refs->perl_ref = sv;
1111 refs->vim_ref = NULL;
1112 refs->next = ref_map;
1113 ref_map = refs;
1114 }
1115
1116 return refs;
1117}
1118
1119 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001120perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001121{
1122 if (SvROK(sv))
1123 sv = SvRV(sv);
1124
1125 switch (SvTYPE(sv)) {
1126 case SVt_NULL:
1127 break;
1128 case SVt_NV: /* float */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001129 rettv->v_type = VAR_FLOAT;
1130 rettv->vval.v_float = SvNV(sv);
1131 break;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001132 case SVt_IV: /* integer */
1133 if (!SvROK(sv)) { /* references should be string */
1134 rettv->vval.v_number = SvIV(sv);
1135 break;
1136 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001137 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001138 case SVt_PV: /* string */
1139 {
1140 size_t len = 0;
1141 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001142 char_u *str_to = (char_u*)alloc(
1143 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001144
1145 if (str_to) {
1146 str_to[len] = '\0';
1147
1148 while (len--) {
1149 if (str_from[len] == '\0')
1150 str_to[len] = '\n';
1151 else
1152 str_to[len] = str_from[len];
1153 }
1154 }
1155
1156 rettv->v_type = VAR_STRING;
1157 rettv->vval.v_string = str_to;
1158 break;
1159 }
1160 case SVt_PVAV: /* list */
1161 {
1162 SSize_t size;
1163 listitem_T * item;
1164 SV ** item2;
1165 list_T * list;
1166 struct ref_map_S * refs;
1167
1168 if ((refs = ref_map_find_SV(sv)) == NULL)
1169 return FAIL;
1170
1171 if (refs->vim_ref)
1172 list = (list_T *) refs->vim_ref;
1173 else
1174 {
1175 if ((list = list_alloc()) == NULL)
1176 return FAIL;
1177 refs->vim_ref = list;
1178
1179 for (size = av_len((AV*)sv); size >= 0; size--)
1180 {
1181 if ((item = listitem_alloc()) == NULL)
1182 break;
1183
1184 item->li_tv.v_type = VAR_NUMBER;
1185 item->li_tv.v_lock = 0;
1186 item->li_tv.vval.v_number = 0;
1187 list_insert(list, item, list->lv_first);
1188
1189 item2 = av_fetch((AV *)sv, size, 0);
1190
1191 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001192 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001193 break;
1194 }
1195 }
1196
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001197 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001198 break;
1199 }
1200 case SVt_PVHV: /* dictionary */
1201 {
1202 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001203 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001204 char * key;
1205 dictitem_T * item;
1206 SV * item2;
1207 dict_T * dict;
1208 struct ref_map_S * refs;
1209
1210 if ((refs = ref_map_find_SV(sv)) == NULL)
1211 return FAIL;
1212
1213 if (refs->vim_ref)
1214 dict = (dict_T *) refs->vim_ref;
1215 else
1216 {
1217
1218 if ((dict = dict_alloc()) == NULL)
1219 return FAIL;
1220 refs->vim_ref = dict;
1221
1222 hv_iterinit((HV *)sv);
1223
1224 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1225 {
1226 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001227 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001228
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001229 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001230 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001231 break;
1232 }
1233
1234 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1235 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001236 item->di_tv.v_type = VAR_NUMBER;
1237 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001238
1239 if (dict_add(dict, item) == FAIL) {
1240 dictitem_free(item);
1241 break;
1242 }
1243 item2 = hv_iterval((HV *)sv, entry);
1244 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1245 break;
1246 }
1247 }
1248
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001249 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001250 break;
1251 }
1252 default: /* not convertible */
1253 {
1254 char *val = SvPV_nolen(sv);
1255 rettv->v_type = VAR_STRING;
1256 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1257 break;
1258 }
1259 }
1260 return OK;
1261}
1262
1263/*
1264 * "perleval()"
1265 */
1266 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001267do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001268{
1269 char *err = NULL;
1270 STRLEN err_len = 0;
1271 SV *sv = NULL;
1272#ifdef HAVE_SANDBOX
1273 SV *safe;
1274#endif
1275
1276 if (perl_interp == NULL)
1277 {
1278#ifdef DYNAMIC_PERL
1279 if (!perl_enabled(TRUE))
1280 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001281 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001282 return;
1283 }
1284#endif
1285 perl_init();
1286 }
1287
1288 {
1289 dSP;
1290 ENTER;
1291 SAVETMPS;
1292
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001293 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001294 {
1295 safe = get_sv("VIM::safe", FALSE);
1296# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1297 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001298 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001299 else
1300# endif
1301 {
1302 sv = newSVpv((char *)str, 0);
1303 PUSHMARK(SP);
1304 XPUSHs(safe);
1305 XPUSHs(sv);
1306 PUTBACK;
1307 call_method("reval", G_SCALAR);
1308 SPAGAIN;
1309 SvREFCNT_dec(sv);
1310 sv = POPs;
Bram Moolenaar0f267622022-05-10 13:32:24 +01001311 PUTBACK;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001312 }
1313 }
1314 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001315 sv = eval_pv((char *)str, 0);
1316
1317 if (sv) {
1318 perl_to_vim(sv, rettv);
1319 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001320 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001321 }
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001322 FREETMPS;
1323 LEAVE;
1324 }
1325 if (err_len)
1326 msg_split((char_u *)err, highlight_attr[HLF_E]);
1327}
1328
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329/*
1330 * ":perldo".
1331 */
1332 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001333ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334{
1335 STRLEN length;
1336 SV *sv;
1337 char *str;
1338 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001339 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001341 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 return;
1343
1344 if (perl_interp == NULL)
1345 {
1346#ifdef DYNAMIC_PERL
1347 if (!perl_enabled(TRUE))
1348 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001349 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 return;
1351 }
1352#endif
1353 perl_init();
1354 }
1355 {
1356 dSP;
1357 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001358 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1359 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 sv_catpvn(sv, (char *)eap->arg, length);
1361 sv_catpvn(sv, "}", 1);
1362 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1363 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001364 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 if (length)
1366 goto err;
1367
1368 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1369 return;
1370
1371 ENTER;
1372 SAVETMPS;
1373 for (i = eap->line1; i <= eap->line2; i++)
1374 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001375 /* Check the line number, the command my have deleted lines. */
1376 if (i > curbuf->b_ml.ml_line_count)
1377 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001378 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379 PUSHMARK(sp);
1380 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001381 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001382 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 break;
1384 SPAGAIN;
1385 if (SvTRUEx(POPs))
1386 {
1387 if (replace_line(&i, &eap->line2) != OK)
1388 {
1389 PUTBACK;
1390 break;
1391 }
1392 }
1393 PUTBACK;
1394 }
1395 FREETMPS;
1396 LEAVE;
1397 check_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001398 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (!length)
1400 return;
1401
1402err:
1403 msg_split((char_u *)str, highlight_attr[HLF_E]);
1404 return;
1405 }
1406}
1407
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001408#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1409typedef struct {
1410 struct _PerlIO base;
1411 int attr;
1412} PerlIOVim;
1413
1414 static IV
1415PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1416 SV *arg, PerlIO_funcs *tab)
1417{
1418 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1419 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001420 if (arg && SvPOK(arg))
1421 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001422 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1423}
1424
1425 static SSize_t
1426PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1427{
1428 char_u *str;
1429 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1430
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001431 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001432 if (str == NULL)
1433 return 0;
1434 msg_split((char_u *)str, s->attr);
1435 vim_free(str);
1436
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001437 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001438}
1439
1440static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1441 sizeof(PerlIO_funcs),
1442 "Vim",
1443 sizeof(PerlIOVim),
1444 PERLIO_K_DUMMY, /* flags */
1445 PerlIOVim_pushed,
1446 NULL, /* popped */
1447 NULL, /* open */
1448 NULL, /* binmode */
1449 NULL, /* arg */
1450 NULL, /* fileno */
1451 NULL, /* dup */
1452 NULL, /* read */
1453 NULL, /* unread */
1454 PerlIOVim_write,
1455 NULL, /* seek */
1456 NULL, /* tell */
1457 NULL, /* close */
1458 NULL, /* flush */
1459 NULL, /* fill */
1460 NULL, /* eof */
1461 NULL, /* error */
1462 NULL, /* clearerr */
1463 NULL, /* setlinebuf */
1464 NULL, /* get_base */
1465 NULL, /* get_bufsiz */
1466 NULL, /* get_ptr */
1467 NULL, /* get_cnt */
1468 NULL /* set_ptrcnt */
1469};
1470
1471/* Use Vim routine for print operator */
1472 static void
1473vim_IOLayer_init(void)
1474{
1475 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1476 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1477 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1478}
1479#endif /* PERLIO_LAYERS && !USE_SFIO */
1480
Christian Brabandt55460da2023-08-29 21:31:28 +02001481#ifdef DYNAMIC_PERL
1482
1483// Certain functionality that we use like SvREFCNT_dec are inlined for
1484// performance reasons. They reference Perl APIs like Perl_sv_free2(), which
1485// would cause linking errors in dynamic builds as we don't link against Perl
1486// during build time. Manually fix it here by redirecting these functions
1487// towards the dynamically loaded version.
1488
1489# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
1490# undef Perl_sv_free2
Ken Takata2b126a62023-10-18 11:59:44 +02001491void Perl_sv_free2(pTHX_ SV *const sv, const U32 refcnt)
Christian Brabandt55460da2023-08-29 21:31:28 +02001492{
1493 (*dll_Perl_sv_free2)(aTHX_ sv, refcnt);
1494}
1495# else
1496# undef Perl_sv_free2
1497void Perl_sv_free2(pTHX_ SV* sv)
1498{
1499 (*dll_Perl_sv_free2)(aTHX_ sv);
1500}
1501# endif
1502
1503# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
1504# undef Perl_sv_2bool_flags
1505bool Perl_sv_2bool_flags(pTHX_ SV* sv, I32 flags)
1506{
1507 return (*dll_Perl_sv_2bool_flags)(aTHX_ sv, flags);
1508}
1509# endif
1510
1511# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
1512# undef Perl_mg_get
1513int Perl_mg_get(pTHX_ SV* sv)
1514{
1515 return (*dll_Perl_mg_get)(aTHX_ sv);
1516}
1517# endif
1518
1519# undef Perl_sv_2nv_flags
1520NV Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
1521{
1522 return (*dll_Perl_sv_2nv_flags)(aTHX_ sv, flags);
1523}
1524
1525# ifdef PERL589_OR_LATER
1526# undef Perl_sv_2iv_flags
Ken Takata2b126a62023-10-18 11:59:44 +02001527IV Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
Christian Brabandt55460da2023-08-29 21:31:28 +02001528{
1529 return (*dll_Perl_sv_2iv_flags)(aTHX_ sv, flags);
1530}
1531# endif
1532
Christian Brabandt55460da2023-08-29 21:31:28 +02001533#endif // DYNAMIC_PERL
1534
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535XS(boot_VIM);
1536
1537 static void
1538xs_init(pTHX)
1539{
1540 char *file = __FILE__;
1541
1542 /* DynaLoader is a special case */
1543 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1544 newXS("VIM::bootstrap", boot_VIM, file);
1545}
1546
1547typedef win_T * VIWIN;
1548typedef buf_T * VIBUF;
1549
1550MODULE = VIM PACKAGE = VIM
1551
1552void
1553Msg(text, hl=NULL)
1554 char *text;
1555 char *hl;
1556
1557 PREINIT:
1558 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559
1560 PPCODE:
1561 if (text != NULL)
1562 {
1563 attr = 0;
1564 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001565 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 msg_split((char_u *)text, attr);
1567 }
1568
1569void
1570SetOption(line)
1571 char *line;
1572
1573 PPCODE:
1574 if (line != NULL)
1575 do_set((char_u *)line, 0);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001576 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577
1578void
1579DoCommand(line)
1580 char *line;
1581
1582 PPCODE:
1583 if (line != NULL)
1584 do_cmdline_cmd((char_u *)line);
1585
1586void
1587Eval(str)
1588 char *str;
1589
1590 PREINIT:
1591 char_u *value;
1592 PPCODE:
Bram Moolenaara4e0b972022-10-01 19:43:52 +01001593 value = eval_to_string((char_u *)str, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 if (value == NULL)
1595 {
1596 XPUSHs(sv_2mortal(newSViv(0)));
1597 XPUSHs(sv_2mortal(newSVpv("", 0)));
1598 }
1599 else
1600 {
1601 XPUSHs(sv_2mortal(newSViv(1)));
1602 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1603 vim_free(value);
1604 }
1605
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001606SV*
1607Blob(SV* sv)
1608 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001609 STRLEN len;
1610 char *s;
1611 unsigned i;
1612 char buf[3];
1613 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001614
1615 CODE:
1616 s = SvPVbyte(sv, len);
1617 newsv = newSVpv("0z", 2);
1618 for (i = 0; i < len; i++)
1619 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001620 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001621 sv_catpvn(newsv, buf, 2);
1622 }
1623 RETVAL = newsv;
1624 OUTPUT:
1625 RETVAL
1626
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627void
1628Buffers(...)
1629
1630 PREINIT:
1631 buf_T *vimbuf;
1632 int i, b;
1633
1634 PPCODE:
1635 if (items == 0)
1636 {
Philip H1d7caa52023-06-22 08:55:47 +02001637 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 {
1639 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001640 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 ++i;
1642
1643 XPUSHs(sv_2mortal(newSViv(i)));
1644 }
1645 else
1646 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001647 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001648 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649 }
1650 }
1651 else
1652 {
1653 for (i = 0; i < items; i++)
1654 {
1655 SV *sv = ST(i);
1656 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001657 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 else
1659 {
1660 char_u *pat;
1661 STRLEN len;
1662
1663 pat = (char_u *)SvPV(sv, len);
1664 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001665 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 --emsg_off;
1667 }
1668
1669 if (b >= 0)
1670 {
1671 vimbuf = buflist_findnr(b);
1672 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001673 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 }
1675 }
1676 }
1677
1678void
1679Windows(...)
1680
1681 PREINIT:
1682 win_T *vimwin;
1683 int i, w;
1684
1685 PPCODE:
1686 if (items == 0)
1687 {
Philip H1d7caa52023-06-22 08:55:47 +02001688 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 XPUSHs(sv_2mortal(newSViv(win_count())));
1690 else
1691 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001692 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001693 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 }
1695 }
1696 else
1697 {
1698 for (i = 0; i < items; i++)
1699 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001700 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 vimwin = win_find_nr(w);
1702 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001703 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 }
1705 }
1706
1707MODULE = VIM PACKAGE = VIWIN
1708
1709void
1710DESTROY(win)
1711 VIWIN win
1712
1713 CODE:
1714 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001715 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
1717SV *
1718Buffer(win)
1719 VIWIN win
1720
1721 CODE:
1722 if (!win_valid(win))
1723 win = curwin;
1724 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1725 OUTPUT:
1726 RETVAL
1727
1728void
1729SetHeight(win, height)
1730 VIWIN win
1731 int height;
1732
1733 PREINIT:
1734 win_T *savewin;
1735
1736 PPCODE:
1737 if (!win_valid(win))
1738 win = curwin;
1739 savewin = curwin;
1740 curwin = win;
1741 win_setheight(height);
1742 curwin = savewin;
1743
1744void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001745Cursor(win, ...)
1746 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001749 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750 {
1751 EXTEND(sp, 2);
1752 if (!win_valid(win))
1753 win = curwin;
1754 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1755 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1756 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001757 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 {
1759 int lnum, col;
1760
1761 if (!win_valid(win))
1762 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001763 lnum = (int) SvIV(ST(1));
1764 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 win->w_cursor.lnum = lnum;
1766 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001767 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 check_cursor(); /* put cursor on an existing line */
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001769 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 }
1771
1772MODULE = VIM PACKAGE = VIBUF
1773
1774void
1775DESTROY(vimbuf)
1776 VIBUF vimbuf;
1777
1778 CODE:
1779 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001780 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781
1782void
1783Name(vimbuf)
1784 VIBUF vimbuf;
1785
1786 PPCODE:
1787 if (!buf_valid(vimbuf))
1788 vimbuf = curbuf;
1789 /* No file name returns an empty string */
1790 if (vimbuf->b_fname == NULL)
1791 XPUSHs(sv_2mortal(newSVpv("", 0)));
1792 else
1793 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1794
1795void
1796Number(vimbuf)
1797 VIBUF vimbuf;
1798
1799 PPCODE:
1800 if (!buf_valid(vimbuf))
1801 vimbuf = curbuf;
1802 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1803
1804void
1805Count(vimbuf)
1806 VIBUF vimbuf;
1807
1808 PPCODE:
1809 if (!buf_valid(vimbuf))
1810 vimbuf = curbuf;
1811 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1812
1813void
1814Get(vimbuf, ...)
1815 VIBUF vimbuf;
1816
1817 PREINIT:
1818 char_u *line;
1819 int i;
1820 long lnum;
1821 PPCODE:
1822 if (buf_valid(vimbuf))
1823 {
1824 for (i = 1; i < items; i++)
1825 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001826 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1828 {
1829 line = ml_get_buf(vimbuf, lnum, FALSE);
1830 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1831 }
1832 }
1833 }
1834
1835void
1836Set(vimbuf, ...)
1837 VIBUF vimbuf;
1838
1839 PREINIT:
1840 int i;
1841 long lnum;
1842 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 PPCODE:
1844 if (buf_valid(vimbuf))
1845 {
1846 if (items < 3)
1847 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1848
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001849 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 for(i = 2; i < items; i++, lnum++)
1851 {
1852 line = SvPV(ST(i),PL_na);
1853 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1854 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001855 aco_save_T aco;
1856
Bram Moolenaare76062c2022-11-28 18:51:43 +00001857 /* Set curwin/curbuf for "vimbuf" and save some things. */
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001858 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001859 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001861 /* Only when a window was found. */
1862 if (u_savesub(lnum) == OK)
1863 {
1864 ml_replace(lnum, (char_u *)line, TRUE);
1865 changed_bytes(lnum, 0);
1866 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001867
Bram Moolenaare76062c2022-11-28 18:51:43 +00001868 /* restore curwin/curbuf and a few other things */
1869 aucmd_restbuf(&aco);
1870 /* Careful: autocommands may have made "vimbuf" invalid! */
1871 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 }
1873 }
1874 }
1875
1876void
1877Delete(vimbuf, ...)
1878 VIBUF vimbuf;
1879
1880 PREINIT:
1881 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 PPCODE:
1883 if (buf_valid(vimbuf))
1884 {
1885 if (items == 2)
1886 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001887 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 count = 1;
1889 }
1890 else if (items == 3)
1891 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001892 lnum = (long) SvIV(ST(1));
1893 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001894 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001896 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 {
1898 lnum -= count;
1899 count = -count;
1900 }
1901 }
1902 if (items >= 2)
1903 {
1904 for (i = 0; i < count; i++)
1905 {
1906 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1907 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001908 aco_save_T aco;
1909
1910 /* set curwin/curbuf for "vimbuf" and save some things */
1911 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001912 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001914 /* Only when a window was found. */
1915 if (u_savedel(lnum, 1) == OK)
1916 {
1917 ml_delete(lnum);
1918 check_cursor();
1919 deleted_lines_mark(lnum, 1L);
1920 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001921
Bram Moolenaare76062c2022-11-28 18:51:43 +00001922 /* restore curwin/curbuf and a few other things */
1923 aucmd_restbuf(&aco);
1924 /* Careful: autocommands may have made "vimbuf"
1925 * invalid! */
1926 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001927
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001928 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 }
1930 }
1931 }
1932 }
1933
1934void
1935Append(vimbuf, ...)
1936 VIBUF vimbuf;
1937
1938 PREINIT:
1939 int i;
1940 long lnum;
1941 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 PPCODE:
1943 if (buf_valid(vimbuf))
1944 {
1945 if (items < 3)
1946 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1947
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001948 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 for (i = 2; i < items; i++, lnum++)
1950 {
1951 line = SvPV(ST(i),PL_na);
1952 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1953 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001954 aco_save_T aco;
1955
1956 /* set curwin/curbuf for "vimbuf" and save some things */
1957 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001958 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001960 /* Only when a window for "vimbuf" was found. */
1961 if (u_inssub(lnum + 1) == OK)
1962 {
1963 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1964 appended_lines_mark(lnum, 1L);
1965 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001966
Bram Moolenaare76062c2022-11-28 18:51:43 +00001967 /* restore curwin/curbuf and a few other things */
1968 aucmd_restbuf(&aco);
1969 /* Careful: autocommands may have made "vimbuf" invalid! */
1970 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001971
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001972 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 }
1974 }
1975 }
1976
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001977#ifdef __GNUC__
1978# pragma GCC diagnostic pop
1979#endif