blob: cdac145adb039a1d87547ac51f54803679b4b37f [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
Drew Vogel8cc725e2025-02-11 20:06:07 +010055#if defined(DYNAMIC_PERL) && ((PERL_REVISION == 5) && (PERL_VERSION >= 38))
56// Copy/pasted from perl.h
57const char PL_memory_wrap[] = "panic: memory wrap";
58#endif
59
Bram Moolenaarcf190c62016-06-02 11:54:06 +020060/* Workaround for perl < 5.8.7 */
61#ifndef PERLIO_FUNCS_DECL
62# ifdef PERLIO_FUNCS_CONST
63# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
64# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
65# else
66# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
67# define PERLIO_FUNCS_CAST(funcs) (funcs)
68# endif
69#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020070#ifndef SvREFCNT_inc_void_NN
71# define SvREFCNT_inc_void_NN SvREFCNT_inc
72#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020073
Bram Moolenaar071d4272004-06-13 20:20:40 +000074/*
75 * Work around clashes between Perl and Vim namespace. proto.h doesn't
76 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
77 * we need the CV typedef. proto.h can't be moved to after including
78 * if_perl.h, because we get all sorts of name clashes then.
79 */
80#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020081# ifndef __MINGW32__
82# include "proto/if_perl.pro"
83# include "proto/if_perlsfio.pro"
84# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000085#endif
86
Bram Moolenaar1f402802018-09-21 14:01:27 +020087// Perl compatibility stuff. This should ensure compatibility with older
88// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020090# include <patchlevel.h>
91# define PERL_REVISION 5
92# define PERL_VERSION PATCHLEVEL
93# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +000094#endif
95
Bram Moolenaar1f402802018-09-21 14:01:27 +020096
97// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
98#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +010099 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +0200100# undef XS_EXTERNAL
101# define XS_EXTERNAL(name) XSPROTO(name)
102#endif
103
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000104/*
105 * Quoting Jan Dubois of Active State:
106 * ActivePerl build 822 still identifies itself as 5.8.8 but already
107 * contains many of the changes from the upcoming Perl 5.8.9 release.
108 *
109 * The changes include addition of two symbols (Perl_sv_2iv_flags,
110 * Perl_newXS_flags) not present in earlier releases.
111 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000112 * Jan Dubois suggested the following guarding scheme.
113 *
114 * Active State defined ACTIVEPERL_VERSION as a string in versions before
115 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000116 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000117#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
118# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
119# define PERL589_OR_LATER
120# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000121#endif
122#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
123# define PERL589_OR_LATER
124#endif
125
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100126#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
127 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
128# define PERL5101_OR_LATER
129#endif
130
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200132# define pTHX void
133# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#endif
135
136#ifndef EXTERN_C
137# define EXTERN_C
138#endif
139
Philip H53752052022-11-04 22:32:21 +0000140// Suppress Infinite warnings when compiling XS modules under macOS 12 Monterey.
141#if defined(__clang__) && defined(__clang_major__) && __clang_major__ > 11
K.Takata161b6ac2022-11-14 15:31:07 +0000142# pragma clang diagnostic ignored "-Wcompound-token-split-by-macro"
Philip H53752052022-11-04 22:32:21 +0000143#endif
144
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145/* Compatibility hacks over */
146
147static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100148static void xs_init(pTHX);
149static void VIM_init(void);
150EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200153 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154 */
155#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200156
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200157# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100158# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200159typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200160# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200161typedef int XSINIT_t;
162typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200163# endif
164# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200165typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200166# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200167
Ken Takatac97b3fe2023-10-11 21:27:06 +0200168# ifdef MSWIN
169# define PERL_PROC FARPROC
170# define load_dll vimLoadLib
171# define symbol_from_dll GetProcAddress
172# define close_dll FreeLibrary
173# define load_dll_error GetWin32Error
174# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200175# include <dlfcn.h>
176# define HANDLE void*
177# define PERL_PROC void*
178# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
179# define symbol_from_dll dlsym
180# define close_dll dlclose
Martin Tournoij1a3e5742021-07-24 13:57:29 +0200181# define load_dll_error dlerror
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200182# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183/*
184 * Wrapper defines
185 */
186# define perl_alloc dll_perl_alloc
187# define perl_construct dll_perl_construct
188# define perl_parse dll_perl_parse
189# define perl_run dll_perl_run
190# define perl_destruct dll_perl_destruct
191# define perl_free dll_perl_free
Christian Brabandt55460da2023-08-29 21:31:28 +0200192# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
193# define Perl_get_context dll_Perl_get_context
194# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100196# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100197# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
198# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199# ifndef PROTO
Drew Vogel97baa1c2025-02-10 20:17:56 +0100200# if defined(PERL_IMPLICIT_CONTEXT)
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200201# define Perl_croak_nocontext dll_Perl_croak_nocontext
202# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203# define Perl_call_argv dll_Perl_call_argv
204# define Perl_call_pv dll_Perl_call_pv
205# define Perl_eval_sv dll_Perl_eval_sv
206# define Perl_get_sv dll_Perl_get_sv
207# define Perl_eval_pv dll_Perl_eval_pv
208# define Perl_call_method dll_Perl_call_method
209# endif
210# define Perl_dowantarray dll_Perl_dowantarray
211# define Perl_free_tmps dll_Perl_free_tmps
212# define Perl_gv_stashpv dll_Perl_gv_stashpv
213# define Perl_markstack_grow dll_Perl_markstack_grow
214# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200215# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
216# define Perl_mg_get dll_Perl_mg_get
217# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218# define Perl_newXS dll_Perl_newXS
219# define Perl_newSV dll_Perl_newSV
220# define Perl_newSViv dll_Perl_newSViv
221# define Perl_newSVpv dll_Perl_newSVpv
222# define Perl_pop_scope dll_Perl_pop_scope
223# define Perl_push_scope dll_Perl_push_scope
224# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200225# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
226# define Perl_save_strlen dll_Perl_save_strlen
227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228# define Perl_stack_grow dll_Perl_stack_grow
229# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200230# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200231# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
232# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
233# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
234# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200235# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200236# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200237# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000238# define Perl_sv_2iv dll_Perl_sv_2iv
239# define Perl_sv_2mortal dll_Perl_sv_2mortal
240# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
241# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
242# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
243# else
244# define Perl_sv_2pv dll_Perl_sv_2pv
245# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200246# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
247# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
248# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100249# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250# define Perl_sv_bless dll_Perl_sv_bless
251# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
252# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
253# else
254# define Perl_sv_catpvn dll_Perl_sv_catpvn
255# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200256# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000257# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
258# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200259# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000261# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
262# define Perl_sv_free2 dll_Perl_sv_free2
263# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264# define Perl_sv_isa dll_Perl_sv_isa
265# define Perl_sv_magic dll_Perl_sv_magic
266# define Perl_sv_setiv dll_Perl_sv_setiv
267# define Perl_sv_setpv dll_Perl_sv_setpv
268# define Perl_sv_setpvn dll_Perl_sv_setpvn
269# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
270# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
271# else
272# define Perl_sv_setsv dll_Perl_sv_setsv
273# endif
274# define Perl_sv_upgrade dll_Perl_sv_upgrade
275# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
276# define Perl_Top_ptr dll_Perl_Top_ptr
277# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
278# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
279# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
280# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
281# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
282# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
283# define Perl_TSv_ptr dll_Perl_TSv_ptr
284# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
285# define Perl_Tna_ptr dll_Perl_Tna_ptr
286# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
287# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
288# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
289# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200290# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000292# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000293# define Perl_sys_term dll_Perl_sys_term
294# define Perl_ISv_ptr dll_Perl_ISv_ptr
295# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
296# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
297# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
298# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
299# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
300# define Perl_Ina_ptr dll_Perl_Ina_ptr
301# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
302# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
303# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
304# define Perl_Iop_ptr dll_Perl_Iop_ptr
305# define Perl_call_list dll_Perl_call_list
306# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
307# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200308# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
309# define Perl_xs_handshake dll_Perl_xs_handshake
310# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
311# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200312# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100313# ifdef USE_ITHREADS
314# define PL_thr_key *dll_PL_thr_key
315# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200316# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200317# ifdef PERL_USE_THREAD_LOCAL
318# define PL_current_context *dll_PL_current_context
319# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100320# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
321# define Perl_hv_iterinit dll_Perl_hv_iterinit
322# define Perl_hv_iterkey dll_Perl_hv_iterkey
323# define Perl_hv_iterval dll_Perl_hv_iterval
324# define Perl_av_fetch dll_Perl_av_fetch
325# define Perl_av_len dll_Perl_av_len
326# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200327# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
328# define PerlIOBase_pushed dll_PerlIOBase_pushed
329# define PerlIO_define_layer dll_PerlIO_define_layer
330# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200331# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
332# define Perl_savetmps dll_Perl_savetmps
333# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000334
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335/*
336 * Declare HANDLE for perl.dll and function pointers.
337 */
338static HANDLE hPerlLib = NULL;
339
Yee Cheng Chinf7f746b2023-09-30 12:28:50 +0200340static PerlInterpreter* (*perl_alloc)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341static void (*perl_construct)(PerlInterpreter*);
342static void (*perl_destruct)(PerlInterpreter*);
343static void (*perl_free)(PerlInterpreter*);
344static int (*perl_run)(PerlInterpreter*);
345static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
Christian Brabandt55460da2023-08-29 21:31:28 +0200346# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347static void* (*Perl_get_context)(void);
Christian Brabandt55460da2023-08-29 21:31:28 +0200348# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200349static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200350# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100351/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200352# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200353static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
354 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200355# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200356static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
357 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200358# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100359# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100360# if defined(PERL_IMPLICIT_CONTEXT)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200361static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200362# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363static I32 (*Perl_dowantarray)(pTHX);
364static void (*Perl_free_tmps)(pTHX);
365static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200366# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200367static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200368# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200372# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
373static int (*Perl_mg_get)(pTHX_ SV*);
374# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
376static SV* (*Perl_newSV)(pTHX_ STRLEN);
377static SV* (*Perl_newSViv)(pTHX_ IV);
378static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
379static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
380static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
381static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
382static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
383static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
384static SV* (*Perl_call_method)(pTHX_ const char*, I32);
385static void (*Perl_pop_scope)(pTHX);
386static void (*Perl_push_scope)(pTHX);
387static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200388# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200389static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200390# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
392static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200393# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200394static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200395# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200396static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200397# endif
398# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200400# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401static IV (*Perl_sv_2iv)(pTHX_ SV*);
402static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200403# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Philip H1d7caa52023-06-22 08:55:47 +0200404static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200406# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200408# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100409static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200410# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
Philip H1d7caa52023-06-22 08:55:47 +0200411static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN* const, const U32);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200412# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200416# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200418# endif
419# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000420static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
421static 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 +0200422# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423static void (*Perl_sv_free)(pTHX_ SV*);
424static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
425static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
426static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
427static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
428static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200429# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200431# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200433# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200435# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
437static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
438static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
439static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
440static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
441static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
442static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
443static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
444static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
445static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
446static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100447# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200448/* Perl-5.18 has a different Perl_sv_free2 signature. */
449# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
450static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
451# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000452static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200453# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000454static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000455static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200456static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200457# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
458# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000459static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
460static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
461static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
462static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
463static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
464static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
465static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
466static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
467static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
468static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
469static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000470static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
471static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200472# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200473# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200474# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200475static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
476static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100477# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200478
479# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
480# ifdef USE_ITHREADS
481static perl_key* dll_PL_thr_key;
482# endif
483# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200484static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
485static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
486static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200487static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200488# endif
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200489# ifdef PERL_USE_THREAD_LOCAL
490static void** dll_PL_current_context;
491# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200492static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100493static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
494static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
495static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
496static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
497static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
498static SSize_t (*Perl_av_len)(pTHX_ AV *);
499static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200500# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200501static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
502static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200503# endif
504# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200505static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200506# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200507
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508/*
509 * Table of name to function pointer of perl.
510 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511static struct {
512 char* name;
513 PERL_PROC* ptr;
514} perl_funcname_table[] = {
515 {"perl_alloc", (PERL_PROC*)&perl_alloc},
516 {"perl_construct", (PERL_PROC*)&perl_construct},
517 {"perl_destruct", (PERL_PROC*)&perl_destruct},
518 {"perl_free", (PERL_PROC*)&perl_free},
519 {"perl_run", (PERL_PROC*)&perl_run},
520 {"perl_parse", (PERL_PROC*)&perl_parse},
Christian Brabandt55460da2023-08-29 21:31:28 +0200521# if defined(WIN32) || ((PERL_REVISION == 5) && (PERL_VERSION < 38))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
Christian Brabandt55460da2023-08-29 21:31:28 +0200523# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200525# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100526 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200527# endif
528# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200530# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
532 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
533 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
534 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
535 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200536# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
537 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
538# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
540 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
541 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
542 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
543 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
544 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
545 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
546 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
547 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
548 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
549 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
550 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
551 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200553 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
556 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200557# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200558 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200559# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200560 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200561# endif
562# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200564# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
566 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200567# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
569 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200570# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200572# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100573 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200574# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
575 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
576# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200577# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000578 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
579 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200580# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200582# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200584# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200586# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
588 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
589 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
590 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
591 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
592 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200593# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200595# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200597# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200599# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000600 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
601 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
602 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
603 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
604 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
605 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
606 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
607 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
608 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
609 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
610 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200611# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000612 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000613 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000614 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200615 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200616# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
617# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000618 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000619 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200620 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
621 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000622 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
623 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200624 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000625 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
626 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200627 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
628 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000629 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
630 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200631# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200632# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200633# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200634 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
635 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200636# endif
637# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100638# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200639 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100640# endif
Drew Vogel97baa1c2025-02-10 20:17:56 +0100641# ifdef PERL_USE_THREAD_LOCAL
Yee Cheng Chin7a9d1aa2023-09-01 18:46:17 +0200642 {"PL_current_context", (PERL_PROC*)&dll_PL_current_context},
Drew Vogel97baa1c2025-02-10 20:17:56 +0100643# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200644# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
646 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
647 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200648 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200649# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200650 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100651 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
652 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
653 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
654 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
655 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
656 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
657 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200658# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200659 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
660 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200661# endif
662# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200663 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200664# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 {"", NULL},
666};
667
Christian Brabandt55460da2023-08-29 21:31:28 +0200668# if (PERL_REVISION == 5) && (PERL_VERSION <= 30)
669// In 5.30, GIMME_V requires linking to Perl_block_gimme() instead of being
670// completely inline. Just use the deprecated GIMME for simplicity.
671# undef GIMME_V
672# define GIMME_V GIMME
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200673# endif
674
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675/*
676 * Make all runtime-links of perl.
677 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200678 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679 * 2. Get pointer to perl function by GetProcAddress.
680 * 3. Repeat 2, until get all functions will be used.
681 *
682 * Parameter 'libname' provides name of DLL.
683 * Return OK or FAIL.
684 */
685 static int
686perl_runtime_link_init(char *libname, int verbose)
687{
688 int i;
689
690 if (hPerlLib != NULL)
691 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200692 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 {
694 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100695 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 return FAIL;
697 }
698 for (i = 0; perl_funcname_table[i].ptr; ++i)
699 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200700 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701 perl_funcname_table[i].name)))
702 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200703 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 hPerlLib = NULL;
705 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000706 semsg((const char *)_(e_could_not_load_library_function_str), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 return FAIL;
708 }
709 }
710 return OK;
711}
712
713/*
714 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
715 * There were no DLL loaded, return FALSE.
716 */
717 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100718perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100720 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721}
722#endif /* DYNAMIC_PERL */
723
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200724#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
725static void vim_IOLayer_init(void);
726#endif
727
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728/*
729 * perl_init(): initialize perl interpreter
730 * We have to call perl_parse to initialize some structures,
731 * there's nothing to actually parse.
732 */
733 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100734perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000736 char *bootargs[] = { "VI", NULL };
737 int argc = 3;
738 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739
Bram Moolenaarc236c162008-07-13 17:41:49 +0000740#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000741 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000742#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 perl_interp = perl_alloc();
744 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000745 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
747 VIM_init();
748#ifdef USE_SFIO
749 sfdisc(PerlIO_stdout(), sfdcnewvim());
750 sfdisc(PerlIO_stderr(), sfdcnewvim());
751 sfsetbuf(PerlIO_stdout(), NULL, 0);
752 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200753#elif defined(PERLIO_LAYERS)
754 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755#endif
756}
757
758/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200759 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760 */
761 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100762perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763{
764 if (perl_interp)
765 {
766 perl_run(perl_interp);
767 perl_destruct(perl_interp);
768 perl_free(perl_interp);
769 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000770#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100771 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774}
775
776/*
777 * msg_split(): send a message to the message handling routines
778 * split at '\n' first though.
779 */
780 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100781msg_split(
782 char_u *s,
783 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784{
785 char *next;
786 char *token = (char *)s;
787
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000788 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 {
790 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100791 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 token = next;
793 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000794 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100795 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796}
797
798#ifndef FEAT_EVAL
799/*
800 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
801 * work properly.
802 */
803 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100804eval_to_string(
805 char_u *arg UNUSED,
Bram Moolenaara4e0b972022-10-01 19:43:52 +0100806 int convert UNUSED,
807 int use_simple_function UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808{
809 return NULL;
810}
811#endif
812
813/*
814 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000815 * The b_perl_private/w_perl_private part of the SCR structure points to the
816 * SV, so there can only be one such SV for a particular SCR structure. When
817 * the last reference has gone (DESTROY is called),
818 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 * all references are gone, the value of the SV is reset;
820 * any subsequent use of any of those reference will produce
821 * a warning. (see typemap)
822 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000823
824 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100825newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000826{
827 sv_upgrade(rv, SVt_RV);
828 if (ptr->w_perl_private == NULL)
829 {
830 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100831 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000832 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200833 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000834 SvRV(rv) = ptr->w_perl_private;
835 SvROK_on(rv);
836 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837}
838
Bram Moolenaare344bea2005-09-01 20:46:49 +0000839 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100840newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000841{
842 sv_upgrade(rv, SVt_RV);
843 if (ptr->b_perl_private == NULL)
844 {
845 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100846 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000847 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200848 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000849 SvRV(rv) = ptr->b_perl_private;
850 SvROK_on(rv);
851 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
852}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200854#if 0
855SV *__sv_save[1024];
856int __sv_save_ix;
857# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
858#else
859# define D_Save_Sv(sv) NOOP
860#endif
861
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862/*
863 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200864 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865 */
866 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100867perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200869 if (wp->w_perl_private && perl_interp != NULL)
870 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200871 SV *sv = (SV*)wp->w_perl_private;
872 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200873 sv_setiv(sv, 0);
874 SvREFCNT_dec(sv);
875 }
876 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877}
878
879 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100880perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200882 if (bp->b_perl_private && perl_interp != NULL)
883 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200884 SV *sv = (SV *)bp->b_perl_private;
885 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200886 sv_setiv(sv, 0);
887 SvREFCNT_dec(sv);
888 }
889 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890}
891
892#ifndef PROTO
893# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
894I32 cur_val(pTHX_ IV iv, SV *sv);
895# else
896I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200897# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898
899/*
900 * Handler for the magic variables $main::curwin and $main::curbuf.
901 * The handler is put into the magic vtbl for these variables.
902 * (This is effectively a C-level equivalent of a tied variable).
903 * There is no "set" function as the variables are read-only.
904 */
905# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
906I32 cur_val(pTHX_ IV iv, SV *sv)
907# else
908I32 cur_val(IV iv, SV *sv)
909# endif
910{
911 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200912
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913 if (iv == 0)
914 rv = newWINrv(newSV(0), curwin);
915 else
916 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200917
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200918 if (SvRV(sv) != SvRV(rv))
919 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100920 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200921 sv_setsv(sv, rv);
922
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200923 SvREFCNT_dec(rv);
924
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 return 0;
926}
927#endif /* !PROTO */
928
929struct ufuncs cw_funcs = { cur_val, 0, 0 };
930struct ufuncs cb_funcs = { cur_val, 0, 1 };
931
932/*
933 * VIM_init(): Vim-specific initialisation.
934 * Make the magical main::curwin and main::curbuf variables
935 */
936 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100937VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000938{
939 static char cw[] = "main::curwin";
940 static char cb[] = "main::curbuf";
941 SV *sv;
942
943 sv = perl_get_sv(cw, TRUE);
944 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
945 SvREADONLY_on(sv);
946
947 sv = perl_get_sv(cb, TRUE);
948 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
949 SvREADONLY_on(sv);
950
951 /*
952 * Setup the Safe compartment.
953 * It shouldn't be a fatal error if the Safe module is missing.
954 * XXX: Only shares the 'Msg' routine (which has to be called
955 * like 'Msg(...)').
956 */
957 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
958
959}
960
961#ifdef DYNAMIC_PERL
962static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
963#endif
964
965/*
966 * ":perl"
967 */
968 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100969ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970{
971 char *err;
972 char *script;
973 STRLEN length;
974 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200975#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200977#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979 script = (char *)script_get(eap, eap->arg);
980 if (eap->skip)
981 {
982 vim_free(script);
983 return;
984 }
985
986 if (perl_interp == NULL)
987 {
988#ifdef DYNAMIC_PERL
989 if (!perl_enabled(TRUE))
990 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100991 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000992 vim_free(script);
993 return;
994 }
995#endif
996 perl_init();
997 }
998
999 {
1000 dSP;
1001 ENTER;
1002 SAVETMPS;
1003
1004 if (script == NULL)
1005 sv = newSVpv((char *)eap->arg, 0);
1006 else
1007 {
1008 sv = newSVpv(script, 0);
1009 vim_free(script);
1010 }
1011
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001012 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001014 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001015# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001016 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001017 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001019# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 {
1021 PUSHMARK(SP);
1022 XPUSHs(safe);
1023 XPUSHs(sv);
1024 PUTBACK;
1025 perl_call_method("reval", G_DISCARD);
1026 }
1027 }
1028 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1030
1031 SvREFCNT_dec(sv);
1032
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001033 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034
1035 FREETMPS;
1036 LEAVE;
1037
1038 if (!length)
1039 return;
1040
1041 msg_split((char_u *)err, highlight_attr[HLF_E]);
1042 return;
1043 }
1044}
1045
1046 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001047replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048{
1049 char *str;
1050
1051 if (SvOK(GvSV(PL_defgv)))
1052 {
1053 str = SvPV(GvSV(PL_defgv), PL_na);
1054 ml_replace(*line, (char_u *)str, 1);
1055 changed_bytes(*line, 0);
1056 }
1057 else
1058 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001059 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 deleted_lines_mark(*line, 1L);
1061 --(*end);
1062 --(*line);
1063 }
1064 return OK;
1065}
1066
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001067static struct ref_map_S {
1068 void *vim_ref;
1069 SV *perl_ref;
1070 struct ref_map_S *next;
1071} *ref_map = NULL;
1072
1073 static void
1074ref_map_free(void)
1075{
1076 struct ref_map_S *tofree;
1077 struct ref_map_S *refs = ref_map;
1078
1079 while (refs) {
1080 tofree = refs;
1081 refs = refs->next;
1082 vim_free(tofree);
1083 }
1084 ref_map = NULL;
1085}
1086
1087 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001088ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001089{
1090 struct ref_map_S *refs = ref_map;
1091 int count = 350;
1092
1093 while (refs) {
1094 if (refs->perl_ref == sv)
1095 break;
1096 refs = refs->next;
1097 count--;
1098 }
1099
1100 if (!refs && count > 0) {
1101 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1102 if (!refs)
1103 return NULL;
1104 refs->perl_ref = sv;
1105 refs->vim_ref = NULL;
1106 refs->next = ref_map;
1107 ref_map = refs;
1108 }
1109
1110 return refs;
1111}
1112
1113 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001114perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001115{
1116 if (SvROK(sv))
1117 sv = SvRV(sv);
1118
1119 switch (SvTYPE(sv)) {
1120 case SVt_NULL:
1121 break;
1122 case SVt_NV: /* float */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001123 rettv->v_type = VAR_FLOAT;
1124 rettv->vval.v_float = SvNV(sv);
1125 break;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001126 case SVt_IV: /* integer */
1127 if (!SvROK(sv)) { /* references should be string */
1128 rettv->vval.v_number = SvIV(sv);
1129 break;
1130 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001131 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001132 case SVt_PV: /* string */
1133 {
1134 size_t len = 0;
1135 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001136 char_u *str_to = (char_u*)alloc(
1137 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001138
1139 if (str_to) {
1140 str_to[len] = '\0';
1141
1142 while (len--) {
1143 if (str_from[len] == '\0')
1144 str_to[len] = '\n';
1145 else
1146 str_to[len] = str_from[len];
1147 }
1148 }
1149
1150 rettv->v_type = VAR_STRING;
1151 rettv->vval.v_string = str_to;
1152 break;
1153 }
1154 case SVt_PVAV: /* list */
1155 {
1156 SSize_t size;
1157 listitem_T * item;
1158 SV ** item2;
1159 list_T * list;
1160 struct ref_map_S * refs;
1161
1162 if ((refs = ref_map_find_SV(sv)) == NULL)
1163 return FAIL;
1164
1165 if (refs->vim_ref)
1166 list = (list_T *) refs->vim_ref;
1167 else
1168 {
1169 if ((list = list_alloc()) == NULL)
1170 return FAIL;
1171 refs->vim_ref = list;
1172
1173 for (size = av_len((AV*)sv); size >= 0; size--)
1174 {
1175 if ((item = listitem_alloc()) == NULL)
1176 break;
1177
1178 item->li_tv.v_type = VAR_NUMBER;
1179 item->li_tv.v_lock = 0;
1180 item->li_tv.vval.v_number = 0;
1181 list_insert(list, item, list->lv_first);
1182
1183 item2 = av_fetch((AV *)sv, size, 0);
1184
1185 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001186 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001187 break;
1188 }
1189 }
1190
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001191 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001192 break;
1193 }
1194 case SVt_PVHV: /* dictionary */
1195 {
1196 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001197 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001198 char * key;
1199 dictitem_T * item;
1200 SV * item2;
1201 dict_T * dict;
1202 struct ref_map_S * refs;
1203
1204 if ((refs = ref_map_find_SV(sv)) == NULL)
1205 return FAIL;
1206
1207 if (refs->vim_ref)
1208 dict = (dict_T *) refs->vim_ref;
1209 else
1210 {
1211
1212 if ((dict = dict_alloc()) == NULL)
1213 return FAIL;
1214 refs->vim_ref = dict;
1215
1216 hv_iterinit((HV *)sv);
1217
1218 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1219 {
1220 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001221 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001222
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001223 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001224 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001225 break;
1226 }
1227
1228 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1229 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001230 item->di_tv.v_type = VAR_NUMBER;
1231 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001232
1233 if (dict_add(dict, item) == FAIL) {
1234 dictitem_free(item);
1235 break;
1236 }
1237 item2 = hv_iterval((HV *)sv, entry);
1238 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1239 break;
1240 }
1241 }
1242
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001243 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001244 break;
1245 }
1246 default: /* not convertible */
1247 {
1248 char *val = SvPV_nolen(sv);
1249 rettv->v_type = VAR_STRING;
1250 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1251 break;
1252 }
1253 }
1254 return OK;
1255}
1256
1257/*
1258 * "perleval()"
1259 */
1260 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001261do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001262{
1263 char *err = NULL;
1264 STRLEN err_len = 0;
1265 SV *sv = NULL;
1266#ifdef HAVE_SANDBOX
1267 SV *safe;
1268#endif
1269
1270 if (perl_interp == NULL)
1271 {
1272#ifdef DYNAMIC_PERL
1273 if (!perl_enabled(TRUE))
1274 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001275 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001276 return;
1277 }
1278#endif
1279 perl_init();
1280 }
1281
1282 {
1283 dSP;
1284 ENTER;
1285 SAVETMPS;
1286
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001287 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001288 {
1289 safe = get_sv("VIM::safe", FALSE);
1290# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1291 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001292 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001293 else
1294# endif
1295 {
1296 sv = newSVpv((char *)str, 0);
1297 PUSHMARK(SP);
1298 XPUSHs(safe);
1299 XPUSHs(sv);
1300 PUTBACK;
1301 call_method("reval", G_SCALAR);
1302 SPAGAIN;
1303 SvREFCNT_dec(sv);
1304 sv = POPs;
Bram Moolenaar0f267622022-05-10 13:32:24 +01001305 PUTBACK;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001306 }
1307 }
1308 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001309 sv = eval_pv((char *)str, 0);
1310
1311 if (sv) {
1312 perl_to_vim(sv, rettv);
1313 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001314 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001315 }
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001316 FREETMPS;
1317 LEAVE;
1318 }
1319 if (err_len)
1320 msg_split((char_u *)err, highlight_attr[HLF_E]);
1321}
1322
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323/*
1324 * ":perldo".
1325 */
1326 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001327ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328{
1329 STRLEN length;
1330 SV *sv;
1331 char *str;
1332 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001333 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001335 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 return;
1337
1338 if (perl_interp == NULL)
1339 {
1340#ifdef DYNAMIC_PERL
1341 if (!perl_enabled(TRUE))
1342 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001343 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 return;
1345 }
1346#endif
1347 perl_init();
1348 }
1349 {
1350 dSP;
1351 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001352 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1353 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 sv_catpvn(sv, (char *)eap->arg, length);
1355 sv_catpvn(sv, "}", 1);
1356 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1357 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001358 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 if (length)
1360 goto err;
1361
1362 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1363 return;
1364
1365 ENTER;
1366 SAVETMPS;
1367 for (i = eap->line1; i <= eap->line2; i++)
1368 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001369 /* Check the line number, the command my have deleted lines. */
1370 if (i > curbuf->b_ml.ml_line_count)
1371 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001372 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 PUSHMARK(sp);
1374 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001375 str = SvPV(GvSV(PL_errgv), length);
zeertzjqe99f0682024-01-29 19:32:39 +01001376 if (length || curbuf != was_curbuf || i > curbuf->b_ml.ml_line_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 break;
1378 SPAGAIN;
1379 if (SvTRUEx(POPs))
1380 {
1381 if (replace_line(&i, &eap->line2) != OK)
1382 {
1383 PUTBACK;
1384 break;
1385 }
1386 }
1387 PUTBACK;
1388 }
1389 FREETMPS;
1390 LEAVE;
1391 check_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001392 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 if (!length)
1394 return;
1395
1396err:
1397 msg_split((char_u *)str, highlight_attr[HLF_E]);
1398 return;
1399 }
1400}
1401
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001402#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1403typedef struct {
1404 struct _PerlIO base;
1405 int attr;
1406} PerlIOVim;
1407
1408 static IV
1409PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1410 SV *arg, PerlIO_funcs *tab)
1411{
1412 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1413 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001414 if (arg && SvPOK(arg))
1415 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001416 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1417}
1418
1419 static SSize_t
1420PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1421{
1422 char_u *str;
1423 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1424
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001425 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001426 if (str == NULL)
1427 return 0;
1428 msg_split((char_u *)str, s->attr);
1429 vim_free(str);
1430
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001431 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001432}
1433
1434static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1435 sizeof(PerlIO_funcs),
1436 "Vim",
1437 sizeof(PerlIOVim),
1438 PERLIO_K_DUMMY, /* flags */
1439 PerlIOVim_pushed,
1440 NULL, /* popped */
1441 NULL, /* open */
1442 NULL, /* binmode */
1443 NULL, /* arg */
1444 NULL, /* fileno */
1445 NULL, /* dup */
1446 NULL, /* read */
1447 NULL, /* unread */
1448 PerlIOVim_write,
1449 NULL, /* seek */
1450 NULL, /* tell */
1451 NULL, /* close */
1452 NULL, /* flush */
1453 NULL, /* fill */
1454 NULL, /* eof */
1455 NULL, /* error */
1456 NULL, /* clearerr */
1457 NULL, /* setlinebuf */
1458 NULL, /* get_base */
1459 NULL, /* get_bufsiz */
1460 NULL, /* get_ptr */
1461 NULL, /* get_cnt */
1462 NULL /* set_ptrcnt */
1463};
1464
1465/* Use Vim routine for print operator */
1466 static void
1467vim_IOLayer_init(void)
1468{
1469 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1470 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1471 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1472}
1473#endif /* PERLIO_LAYERS && !USE_SFIO */
1474
Christian Brabandt55460da2023-08-29 21:31:28 +02001475#ifdef DYNAMIC_PERL
1476
1477// Certain functionality that we use like SvREFCNT_dec are inlined for
1478// performance reasons. They reference Perl APIs like Perl_sv_free2(), which
1479// would cause linking errors in dynamic builds as we don't link against Perl
1480// during build time. Manually fix it here by redirecting these functions
1481// towards the dynamically loaded version.
1482
Drew Vogel97baa1c2025-02-10 20:17:56 +01001483# if (PERL_REVISION == 5) && (PERL_VERSION >= 38)
1484# undef Perl_croak_nocontext
1485void Perl_croak_nocontext(const char *pat, ...)
1486{
1487 dTHX;
1488 va_list args;
1489 va_start(args, pat);
1490 (*dll_Perl_croak_nocontext)(pat, &args);
1491 NOT_REACHED; /* NOTREACHED */
1492 va_end(args);
1493}
1494# endif
1495
Christian Brabandt55460da2023-08-29 21:31:28 +02001496# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
1497# undef Perl_sv_free2
Ken Takata2b126a62023-10-18 11:59:44 +02001498void Perl_sv_free2(pTHX_ SV *const sv, const U32 refcnt)
Christian Brabandt55460da2023-08-29 21:31:28 +02001499{
1500 (*dll_Perl_sv_free2)(aTHX_ sv, refcnt);
1501}
1502# else
1503# undef Perl_sv_free2
1504void Perl_sv_free2(pTHX_ SV* sv)
1505{
1506 (*dll_Perl_sv_free2)(aTHX_ sv);
1507}
1508# endif
1509
1510# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
1511# undef Perl_sv_2bool_flags
1512bool Perl_sv_2bool_flags(pTHX_ SV* sv, I32 flags)
1513{
1514 return (*dll_Perl_sv_2bool_flags)(aTHX_ sv, flags);
1515}
1516# endif
1517
1518# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
1519# undef Perl_mg_get
1520int Perl_mg_get(pTHX_ SV* sv)
1521{
1522 return (*dll_Perl_mg_get)(aTHX_ sv);
1523}
1524# endif
1525
1526# undef Perl_sv_2nv_flags
1527NV Perl_sv_2nv_flags(pTHX_ SV *const sv, const I32 flags)
1528{
1529 return (*dll_Perl_sv_2nv_flags)(aTHX_ sv, flags);
1530}
1531
1532# ifdef PERL589_OR_LATER
1533# undef Perl_sv_2iv_flags
Ken Takata2b126a62023-10-18 11:59:44 +02001534IV Perl_sv_2iv_flags(pTHX_ SV *const sv, const I32 flags)
Christian Brabandt55460da2023-08-29 21:31:28 +02001535{
1536 return (*dll_Perl_sv_2iv_flags)(aTHX_ sv, flags);
1537}
1538# endif
1539
Christian Brabandt55460da2023-08-29 21:31:28 +02001540#endif // DYNAMIC_PERL
1541
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542XS(boot_VIM);
1543
1544 static void
1545xs_init(pTHX)
1546{
1547 char *file = __FILE__;
1548
1549 /* DynaLoader is a special case */
1550 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1551 newXS("VIM::bootstrap", boot_VIM, file);
1552}
1553
1554typedef win_T * VIWIN;
1555typedef buf_T * VIBUF;
1556
1557MODULE = VIM PACKAGE = VIM
1558
1559void
1560Msg(text, hl=NULL)
1561 char *text;
1562 char *hl;
1563
1564 PREINIT:
1565 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566
1567 PPCODE:
1568 if (text != NULL)
1569 {
1570 attr = 0;
1571 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001572 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573 msg_split((char_u *)text, attr);
1574 }
1575
1576void
1577SetOption(line)
1578 char *line;
1579
1580 PPCODE:
1581 if (line != NULL)
1582 do_set((char_u *)line, 0);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001583 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584
1585void
1586DoCommand(line)
1587 char *line;
1588
1589 PPCODE:
1590 if (line != NULL)
1591 do_cmdline_cmd((char_u *)line);
1592
1593void
1594Eval(str)
1595 char *str;
1596
1597 PREINIT:
1598 char_u *value;
1599 PPCODE:
Bram Moolenaara4e0b972022-10-01 19:43:52 +01001600 value = eval_to_string((char_u *)str, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 if (value == NULL)
1602 {
1603 XPUSHs(sv_2mortal(newSViv(0)));
1604 XPUSHs(sv_2mortal(newSVpv("", 0)));
1605 }
1606 else
1607 {
1608 XPUSHs(sv_2mortal(newSViv(1)));
1609 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1610 vim_free(value);
1611 }
1612
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001613SV*
1614Blob(SV* sv)
1615 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001616 STRLEN len;
1617 char *s;
1618 unsigned i;
1619 char buf[3];
1620 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001621
1622 CODE:
1623 s = SvPVbyte(sv, len);
1624 newsv = newSVpv("0z", 2);
1625 for (i = 0; i < len; i++)
1626 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001627 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001628 sv_catpvn(newsv, buf, 2);
1629 }
1630 RETVAL = newsv;
1631 OUTPUT:
1632 RETVAL
1633
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634void
1635Buffers(...)
1636
1637 PREINIT:
1638 buf_T *vimbuf;
1639 int i, b;
1640
1641 PPCODE:
1642 if (items == 0)
1643 {
Philip H1d7caa52023-06-22 08:55:47 +02001644 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 {
1646 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001647 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 ++i;
1649
1650 XPUSHs(sv_2mortal(newSViv(i)));
1651 }
1652 else
1653 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001654 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001655 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 }
1657 }
1658 else
1659 {
1660 for (i = 0; i < items; i++)
1661 {
1662 SV *sv = ST(i);
1663 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001664 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 else
1666 {
1667 char_u *pat;
1668 STRLEN len;
1669
1670 pat = (char_u *)SvPV(sv, len);
1671 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001672 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 --emsg_off;
1674 }
1675
1676 if (b >= 0)
1677 {
1678 vimbuf = buflist_findnr(b);
1679 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001680 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 }
1682 }
1683 }
1684
1685void
1686Windows(...)
1687
1688 PREINIT:
1689 win_T *vimwin;
1690 int i, w;
1691
1692 PPCODE:
1693 if (items == 0)
1694 {
Philip H1d7caa52023-06-22 08:55:47 +02001695 if (GIMME_V == G_SCALAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696 XPUSHs(sv_2mortal(newSViv(win_count())));
1697 else
1698 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001699 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001700 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 }
1702 }
1703 else
1704 {
1705 for (i = 0; i < items; i++)
1706 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001707 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 vimwin = win_find_nr(w);
1709 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001710 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 }
1712 }
1713
1714MODULE = VIM PACKAGE = VIWIN
1715
1716void
1717DESTROY(win)
1718 VIWIN win
1719
1720 CODE:
1721 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001722 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723
1724SV *
1725Buffer(win)
1726 VIWIN win
1727
1728 CODE:
1729 if (!win_valid(win))
1730 win = curwin;
1731 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1732 OUTPUT:
1733 RETVAL
1734
1735void
1736SetHeight(win, height)
1737 VIWIN win
1738 int height;
1739
1740 PREINIT:
1741 win_T *savewin;
1742
1743 PPCODE:
1744 if (!win_valid(win))
1745 win = curwin;
1746 savewin = curwin;
1747 curwin = win;
1748 win_setheight(height);
1749 curwin = savewin;
1750
1751void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001752Cursor(win, ...)
1753 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754
1755 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001756 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001757 {
1758 EXTEND(sp, 2);
1759 if (!win_valid(win))
1760 win = curwin;
1761 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1762 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1763 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001764 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 {
1766 int lnum, col;
1767
1768 if (!win_valid(win))
1769 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001770 lnum = (int) SvIV(ST(1));
1771 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 win->w_cursor.lnum = lnum;
1773 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001774 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 check_cursor(); /* put cursor on an existing line */
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001776 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 }
1778
1779MODULE = VIM PACKAGE = VIBUF
1780
1781void
1782DESTROY(vimbuf)
1783 VIBUF vimbuf;
1784
1785 CODE:
1786 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001787 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788
1789void
1790Name(vimbuf)
1791 VIBUF vimbuf;
1792
1793 PPCODE:
1794 if (!buf_valid(vimbuf))
1795 vimbuf = curbuf;
1796 /* No file name returns an empty string */
1797 if (vimbuf->b_fname == NULL)
1798 XPUSHs(sv_2mortal(newSVpv("", 0)));
1799 else
1800 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1801
1802void
1803Number(vimbuf)
1804 VIBUF vimbuf;
1805
1806 PPCODE:
1807 if (!buf_valid(vimbuf))
1808 vimbuf = curbuf;
1809 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1810
1811void
1812Count(vimbuf)
1813 VIBUF vimbuf;
1814
1815 PPCODE:
1816 if (!buf_valid(vimbuf))
1817 vimbuf = curbuf;
1818 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1819
1820void
1821Get(vimbuf, ...)
1822 VIBUF vimbuf;
1823
1824 PREINIT:
1825 char_u *line;
1826 int i;
1827 long lnum;
1828 PPCODE:
1829 if (buf_valid(vimbuf))
1830 {
1831 for (i = 1; i < items; i++)
1832 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001833 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1835 {
1836 line = ml_get_buf(vimbuf, lnum, FALSE);
1837 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1838 }
1839 }
1840 }
1841
1842void
1843Set(vimbuf, ...)
1844 VIBUF vimbuf;
1845
1846 PREINIT:
1847 int i;
1848 long lnum;
1849 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 PPCODE:
1851 if (buf_valid(vimbuf))
1852 {
1853 if (items < 3)
1854 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1855
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001856 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857 for(i = 2; i < items; i++, lnum++)
1858 {
1859 line = SvPV(ST(i),PL_na);
1860 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1861 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001862 aco_save_T aco;
1863
Bram Moolenaare76062c2022-11-28 18:51:43 +00001864 /* Set curwin/curbuf for "vimbuf" and save some things. */
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001865 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001866 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001868 /* Only when a window was found. */
1869 if (u_savesub(lnum) == OK)
1870 {
1871 ml_replace(lnum, (char_u *)line, TRUE);
1872 changed_bytes(lnum, 0);
1873 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001874
Bram Moolenaare76062c2022-11-28 18:51:43 +00001875 /* restore curwin/curbuf and a few other things */
1876 aucmd_restbuf(&aco);
1877 /* Careful: autocommands may have made "vimbuf" invalid! */
1878 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 }
1880 }
1881 }
1882
1883void
1884Delete(vimbuf, ...)
1885 VIBUF vimbuf;
1886
1887 PREINIT:
1888 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 PPCODE:
1890 if (buf_valid(vimbuf))
1891 {
1892 if (items == 2)
1893 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001894 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 count = 1;
1896 }
1897 else if (items == 3)
1898 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001899 lnum = (long) SvIV(ST(1));
1900 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001901 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001903 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 {
1905 lnum -= count;
1906 count = -count;
1907 }
1908 }
1909 if (items >= 2)
1910 {
1911 for (i = 0; i < count; i++)
1912 {
1913 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1914 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001915 aco_save_T aco;
1916
1917 /* set curwin/curbuf for "vimbuf" and save some things */
1918 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001919 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001921 /* Only when a window was found. */
1922 if (u_savedel(lnum, 1) == OK)
1923 {
1924 ml_delete(lnum);
1925 check_cursor();
1926 deleted_lines_mark(lnum, 1L);
1927 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001928
Bram Moolenaare76062c2022-11-28 18:51:43 +00001929 /* restore curwin/curbuf and a few other things */
1930 aucmd_restbuf(&aco);
1931 /* Careful: autocommands may have made "vimbuf"
1932 * invalid! */
1933 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001934
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001935 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001936 }
1937 }
1938 }
1939 }
1940
1941void
1942Append(vimbuf, ...)
1943 VIBUF vimbuf;
1944
1945 PREINIT:
1946 int i;
1947 long lnum;
1948 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 PPCODE:
1950 if (buf_valid(vimbuf))
1951 {
1952 if (items < 3)
1953 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1954
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001955 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 for (i = 2; i < items; i++, lnum++)
1957 {
1958 line = SvPV(ST(i),PL_na);
1959 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1960 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001961 aco_save_T aco;
1962
1963 /* set curwin/curbuf for "vimbuf" and save some things */
1964 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaare76062c2022-11-28 18:51:43 +00001965 if (curbuf == vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966 {
Bram Moolenaare76062c2022-11-28 18:51:43 +00001967 /* Only when a window for "vimbuf" was found. */
1968 if (u_inssub(lnum + 1) == OK)
1969 {
1970 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1971 appended_lines_mark(lnum, 1L);
1972 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001973
Bram Moolenaare76062c2022-11-28 18:51:43 +00001974 /* restore curwin/curbuf and a few other things */
1975 aucmd_restbuf(&aco);
1976 /* Careful: autocommands may have made "vimbuf" invalid! */
1977 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001978
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001979 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 }
1981 }
1982 }
1983
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001984#ifdef __GNUC__
1985# pragma GCC diagnostic pop
1986#endif