blob: ab2917ae006ea80e866e9014acccf6ac4ed344b2 [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 Moolenaar7c0daf02013-12-14 11:46:08 +010040/* Work around for perl-5.18.
41 * Don't include "perl\lib\CORE\inline.h" for now,
42 * include it after Perl_sv_free2 is defined. */
43#ifdef DYNAMIC_PERL
44# define PERL_NO_INLINE_FUNCTIONS
45#endif
46
Bram Moolenaar207fd752013-12-14 11:50:35 +010047#ifdef _MSC_VER
Bram Moolenaar02890652020-10-31 13:05:11 +010048// Work around for using MSVC and ActivePerl 5.18.
Bram Moolenaar207fd752013-12-14 11:50:35 +010049# define __inline__ __inline
Bram Moolenaare73b38f2020-01-06 21:22:09 +010050// Work around for using MSVC and Strawberry Perl 5.30.
51# define __builtin_expect(expr, val) (expr)
Bram Moolenaar02890652020-10-31 13:05:11 +010052// Work around for using MSVC and Strawberry Perl 5.32.
53# define NO_THREAD_SAFE_LOCALE
Bram Moolenaar207fd752013-12-14 11:50:35 +010054#endif
55
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010056#ifdef __GNUC__
57# pragma GCC diagnostic push
58# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010059#endif
60
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020061#include <EXTERN.h>
62#include <perl.h>
63#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020064#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
65# include <perliol.h>
66#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
Bram Moolenaarcf190c62016-06-02 11:54:06 +020068/* Workaround for perl < 5.8.7 */
69#ifndef PERLIO_FUNCS_DECL
70# ifdef PERLIO_FUNCS_CONST
71# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
72# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
73# else
74# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
75# define PERLIO_FUNCS_CAST(funcs) (funcs)
76# endif
77#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020078#ifndef SvREFCNT_inc_void_NN
79# define SvREFCNT_inc_void_NN SvREFCNT_inc
80#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020081
Bram Moolenaar071d4272004-06-13 20:20:40 +000082/*
83 * Work around clashes between Perl and Vim namespace. proto.h doesn't
84 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
85 * we need the CV typedef. proto.h can't be moved to after including
86 * if_perl.h, because we get all sorts of name clashes then.
87 */
88#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020089# ifndef __MINGW32__
90# include "proto/if_perl.pro"
91# include "proto/if_perlsfio.pro"
92# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000093#endif
94
Bram Moolenaar1f402802018-09-21 14:01:27 +020095// Perl compatibility stuff. This should ensure compatibility with older
96// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020098# include <patchlevel.h>
99# define PERL_REVISION 5
100# define PERL_VERSION PATCHLEVEL
101# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#endif
103
Bram Moolenaar1f402802018-09-21 14:01:27 +0200104
105// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
106#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100107 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +0200108# undef XS_EXTERNAL
109# define XS_EXTERNAL(name) XSPROTO(name)
110#endif
111
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000112/*
113 * Quoting Jan Dubois of Active State:
114 * ActivePerl build 822 still identifies itself as 5.8.8 but already
115 * contains many of the changes from the upcoming Perl 5.8.9 release.
116 *
117 * The changes include addition of two symbols (Perl_sv_2iv_flags,
118 * Perl_newXS_flags) not present in earlier releases.
119 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000120 * Jan Dubois suggested the following guarding scheme.
121 *
122 * Active State defined ACTIVEPERL_VERSION as a string in versions before
123 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000124 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000125#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
126# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
127# define PERL589_OR_LATER
128# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000129#endif
130#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
131# define PERL589_OR_LATER
132#endif
133
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100134#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
135 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
136# define PERL5101_OR_LATER
137#endif
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200140# define pTHX void
141# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142#endif
143
144#ifndef EXTERN_C
145# define EXTERN_C
146#endif
147
148/* Compatibility hacks over */
149
150static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100151static void xs_init(pTHX);
152static void VIM_init(void);
153EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154
155/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200156 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 */
158#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200159
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200160# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100161# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200162typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200163# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200164typedef int XSINIT_t;
165typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200166# endif
167# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200168typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200169# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200170
Bram Moolenaar4f974752019-02-17 17:44:42 +0100171# ifndef MSWIN
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200172# include <dlfcn.h>
173# define HANDLE void*
174# define PERL_PROC void*
175# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
176# define symbol_from_dll dlsym
177# define close_dll dlclose
Martin Tournoij1a3e5742021-07-24 13:57:29 +0200178# define load_dll_error dlerror
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200179# else
180# define PERL_PROC FARPROC
181# define load_dll vimLoadLib
182# define symbol_from_dll GetProcAddress
183# define close_dll FreeLibrary
Martin Tournoij1a3e5742021-07-24 13:57:29 +0200184# define load_dll_error GetWin32Error
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200185# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186/*
187 * Wrapper defines
188 */
189# define perl_alloc dll_perl_alloc
190# define perl_construct dll_perl_construct
191# define perl_parse dll_perl_parse
192# define perl_run dll_perl_run
193# define perl_destruct dll_perl_destruct
194# define perl_free dll_perl_free
195# define Perl_get_context dll_Perl_get_context
196# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100197# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100198# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
199# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200# ifndef PROTO
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200201# ifdef PERL_IMPLICIT_CONTEXT
202# define Perl_croak_nocontext dll_Perl_croak_nocontext
203# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204# define Perl_call_argv dll_Perl_call_argv
205# define Perl_call_pv dll_Perl_call_pv
206# define Perl_eval_sv dll_Perl_eval_sv
207# define Perl_get_sv dll_Perl_get_sv
208# define Perl_eval_pv dll_Perl_eval_pv
209# define Perl_call_method dll_Perl_call_method
210# endif
211# define Perl_dowantarray dll_Perl_dowantarray
212# define Perl_free_tmps dll_Perl_free_tmps
213# define Perl_gv_stashpv dll_Perl_gv_stashpv
214# define Perl_markstack_grow dll_Perl_markstack_grow
215# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200216# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
217# define Perl_mg_get dll_Perl_mg_get
218# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219# define Perl_newXS dll_Perl_newXS
220# define Perl_newSV dll_Perl_newSV
221# define Perl_newSViv dll_Perl_newSViv
222# define Perl_newSVpv dll_Perl_newSVpv
223# define Perl_pop_scope dll_Perl_pop_scope
224# define Perl_push_scope dll_Perl_push_scope
225# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200226# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
227# define Perl_save_strlen dll_Perl_save_strlen
228# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229# define Perl_stack_grow dll_Perl_stack_grow
230# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200231# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200232# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
233# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
234# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
235# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200236# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200237# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200238# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239# define Perl_sv_2iv dll_Perl_sv_2iv
240# define Perl_sv_2mortal dll_Perl_sv_2mortal
241# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
242# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
243# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
244# else
245# define Perl_sv_2pv dll_Perl_sv_2pv
246# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200247# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
248# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
249# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100250# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251# define Perl_sv_bless dll_Perl_sv_bless
252# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
253# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
254# else
255# define Perl_sv_catpvn dll_Perl_sv_catpvn
256# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200257# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000258# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
259# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200260# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000262# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
263# define Perl_sv_free2 dll_Perl_sv_free2
264# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265# define Perl_sv_isa dll_Perl_sv_isa
266# define Perl_sv_magic dll_Perl_sv_magic
267# define Perl_sv_setiv dll_Perl_sv_setiv
268# define Perl_sv_setpv dll_Perl_sv_setpv
269# define Perl_sv_setpvn dll_Perl_sv_setpvn
270# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
271# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
272# else
273# define Perl_sv_setsv dll_Perl_sv_setsv
274# endif
275# define Perl_sv_upgrade dll_Perl_sv_upgrade
276# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
277# define Perl_Top_ptr dll_Perl_Top_ptr
278# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
279# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
280# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
281# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
282# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
283# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
284# define Perl_TSv_ptr dll_Perl_TSv_ptr
285# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
286# define Perl_Tna_ptr dll_Perl_Tna_ptr
287# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
288# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
289# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
290# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200291# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000292
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000293# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000294# define Perl_sys_term dll_Perl_sys_term
295# define Perl_ISv_ptr dll_Perl_ISv_ptr
296# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
297# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
298# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
299# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
300# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
301# define Perl_Ina_ptr dll_Perl_Ina_ptr
302# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
303# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
304# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
305# define Perl_Iop_ptr dll_Perl_Iop_ptr
306# define Perl_call_list dll_Perl_call_list
307# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
308# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200309# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
310# define Perl_xs_handshake dll_Perl_xs_handshake
311# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
312# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200313# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100314# ifdef USE_ITHREADS
315# define PL_thr_key *dll_PL_thr_key
316# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200317# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100318# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
319# define Perl_hv_iterinit dll_Perl_hv_iterinit
320# define Perl_hv_iterkey dll_Perl_hv_iterkey
321# define Perl_hv_iterval dll_Perl_hv_iterval
322# define Perl_av_fetch dll_Perl_av_fetch
323# define Perl_av_len dll_Perl_av_len
324# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200325# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
326# define PerlIOBase_pushed dll_PerlIOBase_pushed
327# define PerlIO_define_layer dll_PerlIO_define_layer
328# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200329# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
330# define Perl_savetmps dll_Perl_savetmps
331# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000332
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333/*
334 * Declare HANDLE for perl.dll and function pointers.
335 */
336static HANDLE hPerlLib = NULL;
337
338static PerlInterpreter* (*perl_alloc)();
339static void (*perl_construct)(PerlInterpreter*);
340static void (*perl_destruct)(PerlInterpreter*);
341static void (*perl_free)(PerlInterpreter*);
342static int (*perl_run)(PerlInterpreter*);
343static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
344static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200345static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200346# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100347/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200348# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200349static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
350 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200351# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200352static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
353 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200354# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100355# endif
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200356# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar864733a2016-04-02 14:18:01 +0200357static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200358# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359static I32 (*Perl_dowantarray)(pTHX);
360static void (*Perl_free_tmps)(pTHX);
361static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200362# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200363static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200364# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200366# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000367static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200368# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
369static int (*Perl_mg_get)(pTHX_ SV*);
370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
372static SV* (*Perl_newSV)(pTHX_ STRLEN);
373static SV* (*Perl_newSViv)(pTHX_ IV);
374static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
375static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
376static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
377static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
378static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
379static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
380static SV* (*Perl_call_method)(pTHX_ const char*, I32);
381static void (*Perl_pop_scope)(pTHX);
382static void (*Perl_push_scope)(pTHX);
383static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200384# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200385static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
388static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200389# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200390static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200391# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200392static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200393# endif
394# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200396# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static IV (*Perl_sv_2iv)(pTHX_ SV*);
398static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200399# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
401static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200402# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200404# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100405static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200406# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
407static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN*, I32);
408# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200410# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200412# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200414# endif
415# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000416static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
417static 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 +0200418# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419static void (*Perl_sv_free)(pTHX_ SV*);
420static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
421static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
422static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
423static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
424static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200425# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200427# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200429# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200431# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
433static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
434static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
435static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
436static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
437static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
438static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
439static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
440static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
441static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
442static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100443# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200444/* Perl-5.18 has a different Perl_sv_free2 signature. */
445# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
446static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
447# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000448static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200449# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000450static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000451static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200452static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200453# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
454# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000455static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
456static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
457static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
458static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
459static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
460static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
461static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
462static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
463static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
464static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
465static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000466static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
467static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200468# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200469# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200470# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200471static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
472static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100473# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200474
475# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
476# ifdef USE_ITHREADS
477static perl_key* dll_PL_thr_key;
478# endif
479# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200480static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
481static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
482static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200483static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200484# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200485static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100486static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
487static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
488static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
489static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
490static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
491static SSize_t (*Perl_av_len)(pTHX_ AV *);
492static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200493# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200494static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
495static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200496# endif
497# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200498static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200499# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200500
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501/*
502 * Table of name to function pointer of perl.
503 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504static struct {
505 char* name;
506 PERL_PROC* ptr;
507} perl_funcname_table[] = {
508 {"perl_alloc", (PERL_PROC*)&perl_alloc},
509 {"perl_construct", (PERL_PROC*)&perl_construct},
510 {"perl_destruct", (PERL_PROC*)&perl_destruct},
511 {"perl_free", (PERL_PROC*)&perl_free},
512 {"perl_run", (PERL_PROC*)&perl_run},
513 {"perl_parse", (PERL_PROC*)&perl_parse},
514 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
515 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200516# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100517 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200518# endif
519# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200521# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
523 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
524 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
525 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
526 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200527# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
528 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
529# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
531 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
532 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
533 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
534 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
535 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
536 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
537 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
538 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
539 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
540 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
541 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
542 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200543# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200544 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
547 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200548# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200549 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200550# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200551 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# endif
553# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200555# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
557 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
560 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200561# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200563# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100564 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200565# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
566 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
567# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200568# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000569 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
570 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200571# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
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_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200575# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200577# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
579 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
580 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
581 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
582 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
583 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200584# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200586# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200588# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200590# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
592 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
593 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
594 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
595 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
596 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
597 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
598 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
599 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
600 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
601 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200602# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000603 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000604 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000605 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200606 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200607# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
608# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000609 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000610 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200611 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
612 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000613 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
614 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200615 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000616 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
617 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200618 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
619 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000620 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
621 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200622# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200623# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200624# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200625 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
626 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200627# endif
628# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100629# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200630 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100631# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200632# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
634 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
635 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200636 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200637# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200638 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100639 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
640 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
641 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
642 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
643 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
644 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
645 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200646# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200647 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
648 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200649# endif
650# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200651 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200652# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 {"", NULL},
654};
655
Bram Moolenaar6b107212013-12-11 15:06:40 +0100656/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200657 * For now, only the definitions of S_SvREFCNT_dec are needed in
658 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200659# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200660static void
661S_SvREFCNT_dec(pTHX_ SV *sv)
662{
663 if (LIKELY(sv != NULL)) {
664 U32 rc = SvREFCNT(sv);
665 if (LIKELY(rc > 1))
666 SvREFCNT(sv) = rc - 1;
667 else
668 Perl_sv_free2(aTHX_ sv, rc);
669 }
670}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200671# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100672
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200673/* perl-5.32 needs Perl_SvREFCNT_dec */
674# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
675# define Perl_SvREFCNT_dec S_SvREFCNT_dec
676# endif
677
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200678/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
679# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
680PERL_STATIC_INLINE I32
681S_TOPMARK(pTHX)
682{
683 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
684 "MARK top %p %" IVdf "\n",
685 PL_markstack_ptr,
686 (IV)*PL_markstack_ptr)));
687 return *PL_markstack_ptr;
688}
689
690PERL_STATIC_INLINE I32
691S_POPMARK(pTHX)
692{
693 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
694 "MARK pop %p %" IVdf "\n",
695 (PL_markstack_ptr-1),
696 (IV)*(PL_markstack_ptr-1))));
697 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
698 return *PL_markstack_ptr--;
699}
700# endif
701
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200702/* perl-5.32 needs Perl_POPMARK */
703# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
704# define Perl_POPMARK S_POPMARK
ichizok54346712021-05-27 18:05:14 +0200705# endif
706
707/* perl-5.34 needs Perl_SvTRUE_common; used in SvTRUE_nomg_NN */
708# if (PERL_REVISION == 5) && (PERL_VERSION >= 34)
709PERL_STATIC_INLINE bool
710Perl_SvTRUE_common(pTHX_ SV * sv, const bool sv_2bool_is_fallback)
711{
712 if (UNLIKELY(SvIMMORTAL_INTERP(sv)))
713 return SvIMMORTAL_TRUE(sv);
714
715 if (! SvOK(sv))
716 return FALSE;
717
718 if (SvPOK(sv))
719 return SvPVXtrue(sv);
720
721 if (SvIOK(sv))
722 return SvIVX(sv) != 0; /* casts to bool */
723
724 if (SvROK(sv) && !(SvOBJECT(SvRV(sv)) && HvAMAGIC(SvSTASH(SvRV(sv)))))
725 return TRUE;
726
727 if (sv_2bool_is_fallback)
728 return sv_2bool_nomg(sv);
729
730 return isGV_with_GP(sv);
731}
732# endif
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200733
734/* perl-5.32 needs Perl_SvTRUE */
ichizok54346712021-05-27 18:05:14 +0200735# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200736PERL_STATIC_INLINE bool
737Perl_SvTRUE(pTHX_ SV *sv) {
738 if (!LIKELY(sv))
ichizok54346712021-05-27 18:05:14 +0200739 return FALSE;
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200740 SvGETMAGIC(sv);
741 return SvTRUE_nomg_NN(sv);
742}
743# endif
744
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745/*
746 * Make all runtime-links of perl.
747 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200748 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 * 2. Get pointer to perl function by GetProcAddress.
750 * 3. Repeat 2, until get all functions will be used.
751 *
752 * Parameter 'libname' provides name of DLL.
753 * Return OK or FAIL.
754 */
755 static int
756perl_runtime_link_init(char *libname, int verbose)
757{
758 int i;
759
760 if (hPerlLib != NULL)
761 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200762 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763 {
764 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100765 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 return FAIL;
767 }
768 for (i = 0; perl_funcname_table[i].ptr; ++i)
769 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200770 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771 perl_funcname_table[i].name)))
772 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200773 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774 hPerlLib = NULL;
775 if (verbose)
Bram Moolenaar460ae5d2022-01-01 14:19:49 +0000776 semsg((const char *)_(e_could_not_load_library_function_str), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777 return FAIL;
778 }
779 }
780 return OK;
781}
782
783/*
784 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
785 * There were no DLL loaded, return FALSE.
786 */
787 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100788perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100790 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791}
792#endif /* DYNAMIC_PERL */
793
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200794#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
795static void vim_IOLayer_init(void);
796#endif
797
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798/*
799 * perl_init(): initialize perl interpreter
800 * We have to call perl_parse to initialize some structures,
801 * there's nothing to actually parse.
802 */
803 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100804perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000806 char *bootargs[] = { "VI", NULL };
807 int argc = 3;
808 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809
Bram Moolenaarc236c162008-07-13 17:41:49 +0000810#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000811 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000812#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 perl_interp = perl_alloc();
814 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000815 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
817 VIM_init();
818#ifdef USE_SFIO
819 sfdisc(PerlIO_stdout(), sfdcnewvim());
820 sfdisc(PerlIO_stderr(), sfdcnewvim());
821 sfsetbuf(PerlIO_stdout(), NULL, 0);
822 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200823#elif defined(PERLIO_LAYERS)
824 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825#endif
826}
827
828/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200829 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 */
831 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100832perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833{
834 if (perl_interp)
835 {
836 perl_run(perl_interp);
837 perl_destruct(perl_interp);
838 perl_free(perl_interp);
839 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000840#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100841 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844}
845
846/*
847 * msg_split(): send a message to the message handling routines
848 * split at '\n' first though.
849 */
850 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100851msg_split(
852 char_u *s,
853 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854{
855 char *next;
856 char *token = (char *)s;
857
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000858 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 {
860 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100861 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 token = next;
863 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000864 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100865 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866}
867
868#ifndef FEAT_EVAL
869/*
870 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
871 * work properly.
872 */
873 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100874eval_to_string(
875 char_u *arg UNUSED,
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100876 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877{
878 return NULL;
879}
880#endif
881
882/*
883 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000884 * The b_perl_private/w_perl_private part of the SCR structure points to the
885 * SV, so there can only be one such SV for a particular SCR structure. When
886 * the last reference has gone (DESTROY is called),
887 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888 * all references are gone, the value of the SV is reset;
889 * any subsequent use of any of those reference will produce
890 * a warning. (see typemap)
891 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000892
893 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100894newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000895{
896 sv_upgrade(rv, SVt_RV);
897 if (ptr->w_perl_private == NULL)
898 {
899 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100900 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000901 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200902 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000903 SvRV(rv) = ptr->w_perl_private;
904 SvROK_on(rv);
905 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906}
907
Bram Moolenaare344bea2005-09-01 20:46:49 +0000908 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100909newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000910{
911 sv_upgrade(rv, SVt_RV);
912 if (ptr->b_perl_private == NULL)
913 {
914 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100915 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000916 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200917 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000918 SvRV(rv) = ptr->b_perl_private;
919 SvROK_on(rv);
920 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
921}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200923#if 0
924SV *__sv_save[1024];
925int __sv_save_ix;
926# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
927#else
928# define D_Save_Sv(sv) NOOP
929#endif
930
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931/*
932 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200933 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 */
935 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100936perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200938 if (wp->w_perl_private && perl_interp != NULL)
939 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200940 SV *sv = (SV*)wp->w_perl_private;
941 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200942 sv_setiv(sv, 0);
943 SvREFCNT_dec(sv);
944 }
945 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946}
947
948 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100949perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200951 if (bp->b_perl_private && perl_interp != NULL)
952 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200953 SV *sv = (SV *)bp->b_perl_private;
954 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200955 sv_setiv(sv, 0);
956 SvREFCNT_dec(sv);
957 }
958 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959}
960
961#ifndef PROTO
962# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
963I32 cur_val(pTHX_ IV iv, SV *sv);
964# else
965I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200966# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
968/*
969 * Handler for the magic variables $main::curwin and $main::curbuf.
970 * The handler is put into the magic vtbl for these variables.
971 * (This is effectively a C-level equivalent of a tied variable).
972 * There is no "set" function as the variables are read-only.
973 */
974# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
975I32 cur_val(pTHX_ IV iv, SV *sv)
976# else
977I32 cur_val(IV iv, SV *sv)
978# endif
979{
980 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200981
Bram Moolenaar071d4272004-06-13 20:20:40 +0000982 if (iv == 0)
983 rv = newWINrv(newSV(0), curwin);
984 else
985 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200986
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200987 if (SvRV(sv) != SvRV(rv))
988 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100989 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200990 sv_setsv(sv, rv);
991
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200992 SvREFCNT_dec(rv);
993
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 return 0;
995}
996#endif /* !PROTO */
997
998struct ufuncs cw_funcs = { cur_val, 0, 0 };
999struct ufuncs cb_funcs = { cur_val, 0, 1 };
1000
1001/*
1002 * VIM_init(): Vim-specific initialisation.
1003 * Make the magical main::curwin and main::curbuf variables
1004 */
1005 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001006VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007{
1008 static char cw[] = "main::curwin";
1009 static char cb[] = "main::curbuf";
1010 SV *sv;
1011
1012 sv = perl_get_sv(cw, TRUE);
1013 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
1014 SvREADONLY_on(sv);
1015
1016 sv = perl_get_sv(cb, TRUE);
1017 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
1018 SvREADONLY_on(sv);
1019
1020 /*
1021 * Setup the Safe compartment.
1022 * It shouldn't be a fatal error if the Safe module is missing.
1023 * XXX: Only shares the 'Msg' routine (which has to be called
1024 * like 'Msg(...)').
1025 */
1026 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
1027
1028}
1029
1030#ifdef DYNAMIC_PERL
1031static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
1032#endif
1033
1034/*
1035 * ":perl"
1036 */
1037 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001038ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039{
1040 char *err;
1041 char *script;
1042 STRLEN length;
1043 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001044#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001046#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
1048 script = (char *)script_get(eap, eap->arg);
1049 if (eap->skip)
1050 {
1051 vim_free(script);
1052 return;
1053 }
1054
1055 if (perl_interp == NULL)
1056 {
1057#ifdef DYNAMIC_PERL
1058 if (!perl_enabled(TRUE))
1059 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001060 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061 vim_free(script);
1062 return;
1063 }
1064#endif
1065 perl_init();
1066 }
1067
1068 {
1069 dSP;
1070 ENTER;
1071 SAVETMPS;
1072
1073 if (script == NULL)
1074 sv = newSVpv((char *)eap->arg, 0);
1075 else
1076 {
1077 sv = newSVpv(script, 0);
1078 vim_free(script);
1079 }
1080
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001081 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001083 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001084# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001085 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001086 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 {
1090 PUSHMARK(SP);
1091 XPUSHs(safe);
1092 XPUSHs(sv);
1093 PUTBACK;
1094 perl_call_method("reval", G_DISCARD);
1095 }
1096 }
1097 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1099
1100 SvREFCNT_dec(sv);
1101
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001102 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103
1104 FREETMPS;
1105 LEAVE;
1106
1107 if (!length)
1108 return;
1109
1110 msg_split((char_u *)err, highlight_attr[HLF_E]);
1111 return;
1112 }
1113}
1114
1115 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001116replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117{
1118 char *str;
1119
1120 if (SvOK(GvSV(PL_defgv)))
1121 {
1122 str = SvPV(GvSV(PL_defgv), PL_na);
1123 ml_replace(*line, (char_u *)str, 1);
1124 changed_bytes(*line, 0);
1125 }
1126 else
1127 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001128 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 deleted_lines_mark(*line, 1L);
1130 --(*end);
1131 --(*line);
1132 }
1133 return OK;
1134}
1135
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001136static struct ref_map_S {
1137 void *vim_ref;
1138 SV *perl_ref;
1139 struct ref_map_S *next;
1140} *ref_map = NULL;
1141
1142 static void
1143ref_map_free(void)
1144{
1145 struct ref_map_S *tofree;
1146 struct ref_map_S *refs = ref_map;
1147
1148 while (refs) {
1149 tofree = refs;
1150 refs = refs->next;
1151 vim_free(tofree);
1152 }
1153 ref_map = NULL;
1154}
1155
1156 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001157ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001158{
1159 struct ref_map_S *refs = ref_map;
1160 int count = 350;
1161
1162 while (refs) {
1163 if (refs->perl_ref == sv)
1164 break;
1165 refs = refs->next;
1166 count--;
1167 }
1168
1169 if (!refs && count > 0) {
1170 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1171 if (!refs)
1172 return NULL;
1173 refs->perl_ref = sv;
1174 refs->vim_ref = NULL;
1175 refs->next = ref_map;
1176 ref_map = refs;
1177 }
1178
1179 return refs;
1180}
1181
1182 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001183perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001184{
1185 if (SvROK(sv))
1186 sv = SvRV(sv);
1187
1188 switch (SvTYPE(sv)) {
1189 case SVt_NULL:
1190 break;
1191 case SVt_NV: /* float */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001192 rettv->v_type = VAR_FLOAT;
1193 rettv->vval.v_float = SvNV(sv);
1194 break;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001195 case SVt_IV: /* integer */
1196 if (!SvROK(sv)) { /* references should be string */
1197 rettv->vval.v_number = SvIV(sv);
1198 break;
1199 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001200 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001201 case SVt_PV: /* string */
1202 {
1203 size_t len = 0;
1204 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001205 char_u *str_to = (char_u*)alloc(
1206 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001207
1208 if (str_to) {
1209 str_to[len] = '\0';
1210
1211 while (len--) {
1212 if (str_from[len] == '\0')
1213 str_to[len] = '\n';
1214 else
1215 str_to[len] = str_from[len];
1216 }
1217 }
1218
1219 rettv->v_type = VAR_STRING;
1220 rettv->vval.v_string = str_to;
1221 break;
1222 }
1223 case SVt_PVAV: /* list */
1224 {
1225 SSize_t size;
1226 listitem_T * item;
1227 SV ** item2;
1228 list_T * list;
1229 struct ref_map_S * refs;
1230
1231 if ((refs = ref_map_find_SV(sv)) == NULL)
1232 return FAIL;
1233
1234 if (refs->vim_ref)
1235 list = (list_T *) refs->vim_ref;
1236 else
1237 {
1238 if ((list = list_alloc()) == NULL)
1239 return FAIL;
1240 refs->vim_ref = list;
1241
1242 for (size = av_len((AV*)sv); size >= 0; size--)
1243 {
1244 if ((item = listitem_alloc()) == NULL)
1245 break;
1246
1247 item->li_tv.v_type = VAR_NUMBER;
1248 item->li_tv.v_lock = 0;
1249 item->li_tv.vval.v_number = 0;
1250 list_insert(list, item, list->lv_first);
1251
1252 item2 = av_fetch((AV *)sv, size, 0);
1253
1254 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001255 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001256 break;
1257 }
1258 }
1259
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001260 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001261 break;
1262 }
1263 case SVt_PVHV: /* dictionary */
1264 {
1265 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001266 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001267 char * key;
1268 dictitem_T * item;
1269 SV * item2;
1270 dict_T * dict;
1271 struct ref_map_S * refs;
1272
1273 if ((refs = ref_map_find_SV(sv)) == NULL)
1274 return FAIL;
1275
1276 if (refs->vim_ref)
1277 dict = (dict_T *) refs->vim_ref;
1278 else
1279 {
1280
1281 if ((dict = dict_alloc()) == NULL)
1282 return FAIL;
1283 refs->vim_ref = dict;
1284
1285 hv_iterinit((HV *)sv);
1286
1287 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1288 {
1289 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001290 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001291
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001292 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001293 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001294 break;
1295 }
1296
1297 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1298 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001299 item->di_tv.v_type = VAR_NUMBER;
1300 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001301
1302 if (dict_add(dict, item) == FAIL) {
1303 dictitem_free(item);
1304 break;
1305 }
1306 item2 = hv_iterval((HV *)sv, entry);
1307 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1308 break;
1309 }
1310 }
1311
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001312 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001313 break;
1314 }
1315 default: /* not convertible */
1316 {
1317 char *val = SvPV_nolen(sv);
1318 rettv->v_type = VAR_STRING;
1319 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1320 break;
1321 }
1322 }
1323 return OK;
1324}
1325
1326/*
1327 * "perleval()"
1328 */
1329 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001330do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001331{
1332 char *err = NULL;
1333 STRLEN err_len = 0;
1334 SV *sv = NULL;
1335#ifdef HAVE_SANDBOX
1336 SV *safe;
1337#endif
1338
1339 if (perl_interp == NULL)
1340 {
1341#ifdef DYNAMIC_PERL
1342 if (!perl_enabled(TRUE))
1343 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001344 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001345 return;
1346 }
1347#endif
1348 perl_init();
1349 }
1350
1351 {
1352 dSP;
1353 ENTER;
1354 SAVETMPS;
1355
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001356 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001357 {
1358 safe = get_sv("VIM::safe", FALSE);
1359# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1360 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaare96eea72022-01-28 21:00:51 +00001361 emsg(_(e_perl_evaluation_forbidden_in_sandbox_without_safe_module));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001362 else
1363# endif
1364 {
1365 sv = newSVpv((char *)str, 0);
1366 PUSHMARK(SP);
1367 XPUSHs(safe);
1368 XPUSHs(sv);
1369 PUTBACK;
1370 call_method("reval", G_SCALAR);
1371 SPAGAIN;
1372 SvREFCNT_dec(sv);
1373 sv = POPs;
Bram Moolenaar0f267622022-05-10 13:32:24 +01001374 PUTBACK;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001375 }
1376 }
1377 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001378 sv = eval_pv((char *)str, 0);
1379
1380 if (sv) {
1381 perl_to_vim(sv, rettv);
1382 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001383 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001384 }
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001385 FREETMPS;
1386 LEAVE;
1387 }
1388 if (err_len)
1389 msg_split((char_u *)err, highlight_attr[HLF_E]);
1390}
1391
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392/*
1393 * ":perldo".
1394 */
1395 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001396ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397{
1398 STRLEN length;
1399 SV *sv;
1400 char *str;
1401 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001402 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001404 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 return;
1406
1407 if (perl_interp == NULL)
1408 {
1409#ifdef DYNAMIC_PERL
1410 if (!perl_enabled(TRUE))
1411 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001412 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 return;
1414 }
1415#endif
1416 perl_init();
1417 }
1418 {
1419 dSP;
1420 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001421 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1422 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001423 sv_catpvn(sv, (char *)eap->arg, length);
1424 sv_catpvn(sv, "}", 1);
1425 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1426 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001427 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 if (length)
1429 goto err;
1430
1431 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1432 return;
1433
1434 ENTER;
1435 SAVETMPS;
1436 for (i = eap->line1; i <= eap->line2; i++)
1437 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001438 /* Check the line number, the command my have deleted lines. */
1439 if (i > curbuf->b_ml.ml_line_count)
1440 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001441 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442 PUSHMARK(sp);
1443 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001444 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001445 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 break;
1447 SPAGAIN;
1448 if (SvTRUEx(POPs))
1449 {
1450 if (replace_line(&i, &eap->line2) != OK)
1451 {
1452 PUTBACK;
1453 break;
1454 }
1455 }
1456 PUTBACK;
1457 }
1458 FREETMPS;
1459 LEAVE;
1460 check_cursor();
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001461 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462 if (!length)
1463 return;
1464
1465err:
1466 msg_split((char_u *)str, highlight_attr[HLF_E]);
1467 return;
1468 }
1469}
1470
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001471#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1472typedef struct {
1473 struct _PerlIO base;
1474 int attr;
1475} PerlIOVim;
1476
1477 static IV
1478PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1479 SV *arg, PerlIO_funcs *tab)
1480{
1481 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1482 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001483 if (arg && SvPOK(arg))
1484 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001485 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1486}
1487
1488 static SSize_t
1489PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1490{
1491 char_u *str;
1492 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1493
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001494 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001495 if (str == NULL)
1496 return 0;
1497 msg_split((char_u *)str, s->attr);
1498 vim_free(str);
1499
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001500 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001501}
1502
1503static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1504 sizeof(PerlIO_funcs),
1505 "Vim",
1506 sizeof(PerlIOVim),
1507 PERLIO_K_DUMMY, /* flags */
1508 PerlIOVim_pushed,
1509 NULL, /* popped */
1510 NULL, /* open */
1511 NULL, /* binmode */
1512 NULL, /* arg */
1513 NULL, /* fileno */
1514 NULL, /* dup */
1515 NULL, /* read */
1516 NULL, /* unread */
1517 PerlIOVim_write,
1518 NULL, /* seek */
1519 NULL, /* tell */
1520 NULL, /* close */
1521 NULL, /* flush */
1522 NULL, /* fill */
1523 NULL, /* eof */
1524 NULL, /* error */
1525 NULL, /* clearerr */
1526 NULL, /* setlinebuf */
1527 NULL, /* get_base */
1528 NULL, /* get_bufsiz */
1529 NULL, /* get_ptr */
1530 NULL, /* get_cnt */
1531 NULL /* set_ptrcnt */
1532};
1533
1534/* Use Vim routine for print operator */
1535 static void
1536vim_IOLayer_init(void)
1537{
1538 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1539 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1540 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1541}
1542#endif /* PERLIO_LAYERS && !USE_SFIO */
1543
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544XS(boot_VIM);
1545
1546 static void
1547xs_init(pTHX)
1548{
1549 char *file = __FILE__;
1550
1551 /* DynaLoader is a special case */
1552 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1553 newXS("VIM::bootstrap", boot_VIM, file);
1554}
1555
1556typedef win_T * VIWIN;
1557typedef buf_T * VIBUF;
1558
1559MODULE = VIM PACKAGE = VIM
1560
1561void
1562Msg(text, hl=NULL)
1563 char *text;
1564 char *hl;
1565
1566 PREINIT:
1567 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
1569 PPCODE:
1570 if (text != NULL)
1571 {
1572 attr = 0;
1573 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001574 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 msg_split((char_u *)text, attr);
1576 }
1577
1578void
1579SetOption(line)
1580 char *line;
1581
1582 PPCODE:
1583 if (line != NULL)
1584 do_set((char_u *)line, 0);
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001585 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586
1587void
1588DoCommand(line)
1589 char *line;
1590
1591 PPCODE:
1592 if (line != NULL)
1593 do_cmdline_cmd((char_u *)line);
1594
1595void
1596Eval(str)
1597 char *str;
1598
1599 PREINIT:
1600 char_u *value;
1601 PPCODE:
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001602 value = eval_to_string((char_u *)str, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 if (value == NULL)
1604 {
1605 XPUSHs(sv_2mortal(newSViv(0)));
1606 XPUSHs(sv_2mortal(newSVpv("", 0)));
1607 }
1608 else
1609 {
1610 XPUSHs(sv_2mortal(newSViv(1)));
1611 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1612 vim_free(value);
1613 }
1614
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001615SV*
1616Blob(SV* sv)
1617 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001618 STRLEN len;
1619 char *s;
1620 unsigned i;
1621 char buf[3];
1622 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001623
1624 CODE:
1625 s = SvPVbyte(sv, len);
1626 newsv = newSVpv("0z", 2);
1627 for (i = 0; i < len; i++)
1628 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001629 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001630 sv_catpvn(newsv, buf, 2);
1631 }
1632 RETVAL = newsv;
1633 OUTPUT:
1634 RETVAL
1635
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636void
1637Buffers(...)
1638
1639 PREINIT:
1640 buf_T *vimbuf;
1641 int i, b;
1642
1643 PPCODE:
1644 if (items == 0)
1645 {
1646 if (GIMME == G_SCALAR)
1647 {
1648 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001649 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 ++i;
1651
1652 XPUSHs(sv_2mortal(newSViv(i)));
1653 }
1654 else
1655 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001656 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001657 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001658 }
1659 }
1660 else
1661 {
1662 for (i = 0; i < items; i++)
1663 {
1664 SV *sv = ST(i);
1665 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001666 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 else
1668 {
1669 char_u *pat;
1670 STRLEN len;
1671
1672 pat = (char_u *)SvPV(sv, len);
1673 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001674 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 --emsg_off;
1676 }
1677
1678 if (b >= 0)
1679 {
1680 vimbuf = buflist_findnr(b);
1681 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001682 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 }
1684 }
1685 }
1686
1687void
1688Windows(...)
1689
1690 PREINIT:
1691 win_T *vimwin;
1692 int i, w;
1693
1694 PPCODE:
1695 if (items == 0)
1696 {
1697 if (GIMME == G_SCALAR)
1698 XPUSHs(sv_2mortal(newSViv(win_count())));
1699 else
1700 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001701 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001702 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 }
1704 }
1705 else
1706 {
1707 for (i = 0; i < items; i++)
1708 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001709 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 vimwin = win_find_nr(w);
1711 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001712 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 }
1714 }
1715
1716MODULE = VIM PACKAGE = VIWIN
1717
1718void
1719DESTROY(win)
1720 VIWIN win
1721
1722 CODE:
1723 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001724 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
1726SV *
1727Buffer(win)
1728 VIWIN win
1729
1730 CODE:
1731 if (!win_valid(win))
1732 win = curwin;
1733 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1734 OUTPUT:
1735 RETVAL
1736
1737void
1738SetHeight(win, height)
1739 VIWIN win
1740 int height;
1741
1742 PREINIT:
1743 win_T *savewin;
1744
1745 PPCODE:
1746 if (!win_valid(win))
1747 win = curwin;
1748 savewin = curwin;
1749 curwin = win;
1750 win_setheight(height);
1751 curwin = savewin;
1752
1753void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001754Cursor(win, ...)
1755 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756
1757 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001758 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 {
1760 EXTEND(sp, 2);
1761 if (!win_valid(win))
1762 win = curwin;
1763 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1764 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1765 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001766 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767 {
1768 int lnum, col;
1769
1770 if (!win_valid(win))
1771 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001772 lnum = (int) SvIV(ST(1));
1773 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 win->w_cursor.lnum = lnum;
1775 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001776 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 check_cursor(); /* put cursor on an existing line */
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001778 update_screen(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 }
1780
1781MODULE = VIM PACKAGE = VIBUF
1782
1783void
1784DESTROY(vimbuf)
1785 VIBUF vimbuf;
1786
1787 CODE:
1788 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001789 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790
1791void
1792Name(vimbuf)
1793 VIBUF vimbuf;
1794
1795 PPCODE:
1796 if (!buf_valid(vimbuf))
1797 vimbuf = curbuf;
1798 /* No file name returns an empty string */
1799 if (vimbuf->b_fname == NULL)
1800 XPUSHs(sv_2mortal(newSVpv("", 0)));
1801 else
1802 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1803
1804void
1805Number(vimbuf)
1806 VIBUF vimbuf;
1807
1808 PPCODE:
1809 if (!buf_valid(vimbuf))
1810 vimbuf = curbuf;
1811 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1812
1813void
1814Count(vimbuf)
1815 VIBUF vimbuf;
1816
1817 PPCODE:
1818 if (!buf_valid(vimbuf))
1819 vimbuf = curbuf;
1820 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1821
1822void
1823Get(vimbuf, ...)
1824 VIBUF vimbuf;
1825
1826 PREINIT:
1827 char_u *line;
1828 int i;
1829 long lnum;
1830 PPCODE:
1831 if (buf_valid(vimbuf))
1832 {
1833 for (i = 1; i < items; i++)
1834 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001835 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1837 {
1838 line = ml_get_buf(vimbuf, lnum, FALSE);
1839 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1840 }
1841 }
1842 }
1843
1844void
1845Set(vimbuf, ...)
1846 VIBUF vimbuf;
1847
1848 PREINIT:
1849 int i;
1850 long lnum;
1851 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 PPCODE:
1853 if (buf_valid(vimbuf))
1854 {
1855 if (items < 3)
1856 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1857
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001858 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 for(i = 2; i < items; i++, lnum++)
1860 {
1861 line = SvPV(ST(i),PL_na);
1862 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1863 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001864 aco_save_T aco;
1865
1866 /* set curwin/curbuf for "vimbuf" and save some things */
1867 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001868
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 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 Moolenaar334a3bf2006-08-08 14:45:44 +00001875 /* restore curwin/curbuf and a few other things */
1876 aucmd_restbuf(&aco);
1877 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 }
1879 }
1880 }
1881
1882void
1883Delete(vimbuf, ...)
1884 VIBUF vimbuf;
1885
1886 PREINIT:
1887 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 PPCODE:
1889 if (buf_valid(vimbuf))
1890 {
1891 if (items == 2)
1892 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001893 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 count = 1;
1895 }
1896 else if (items == 3)
1897 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001898 lnum = (long) SvIV(ST(1));
1899 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001900 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001902 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 {
1904 lnum -= count;
1905 count = -count;
1906 }
1907 }
1908 if (items >= 2)
1909 {
1910 for (i = 0; i < count; i++)
1911 {
1912 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1913 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001914 aco_save_T aco;
1915
1916 /* set curwin/curbuf for "vimbuf" and save some things */
1917 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001918
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 if (u_savedel(lnum, 1) == OK)
1920 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001921 ml_delete(lnum);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001922 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001925
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001926 /* restore curwin/curbuf and a few other things */
1927 aucmd_restbuf(&aco);
1928 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001929
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001930 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 }
1932 }
1933 }
1934 }
1935
1936void
1937Append(vimbuf, ...)
1938 VIBUF vimbuf;
1939
1940 PREINIT:
1941 int i;
1942 long lnum;
1943 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 PPCODE:
1945 if (buf_valid(vimbuf))
1946 {
1947 if (items < 3)
1948 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1949
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001950 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 for (i = 2; i < items; i++, lnum++)
1952 {
1953 line = SvPV(ST(i),PL_na);
1954 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1955 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001956 aco_save_T aco;
1957
1958 /* set curwin/curbuf for "vimbuf" and save some things */
1959 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001960
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 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 Moolenaar334a3bf2006-08-08 14:45:44 +00001967 /* restore curwin/curbuf and a few other things */
1968 aucmd_restbuf(&aco);
1969 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001970
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001971 update_curbuf(UPD_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973 }
1974 }
1975
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001976#ifdef __GNUC__
1977# pragma GCC diagnostic pop
1978#endif