blob: 999dff50ec4ac8e359e2db8d7d95a3999a042701 [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
178# else
179# define PERL_PROC FARPROC
180# define load_dll vimLoadLib
181# define symbol_from_dll GetProcAddress
182# define close_dll FreeLibrary
183# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184/*
185 * Wrapper defines
186 */
187# define perl_alloc dll_perl_alloc
188# define perl_construct dll_perl_construct
189# define perl_parse dll_perl_parse
190# define perl_run dll_perl_run
191# define perl_destruct dll_perl_destruct
192# define perl_free dll_perl_free
193# define Perl_get_context dll_Perl_get_context
194# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100195# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100196# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
197# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198# ifndef PROTO
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200199# ifdef PERL_IMPLICIT_CONTEXT
200# define Perl_croak_nocontext dll_Perl_croak_nocontext
201# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202# define Perl_call_argv dll_Perl_call_argv
203# define Perl_call_pv dll_Perl_call_pv
204# define Perl_eval_sv dll_Perl_eval_sv
205# define Perl_get_sv dll_Perl_get_sv
206# define Perl_eval_pv dll_Perl_eval_pv
207# define Perl_call_method dll_Perl_call_method
208# endif
209# define Perl_dowantarray dll_Perl_dowantarray
210# define Perl_free_tmps dll_Perl_free_tmps
211# define Perl_gv_stashpv dll_Perl_gv_stashpv
212# define Perl_markstack_grow dll_Perl_markstack_grow
213# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200214# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
215# define Perl_mg_get dll_Perl_mg_get
216# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217# define Perl_newXS dll_Perl_newXS
218# define Perl_newSV dll_Perl_newSV
219# define Perl_newSViv dll_Perl_newSViv
220# define Perl_newSVpv dll_Perl_newSVpv
221# define Perl_pop_scope dll_Perl_pop_scope
222# define Perl_push_scope dll_Perl_push_scope
223# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200224# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
225# define Perl_save_strlen dll_Perl_save_strlen
226# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define Perl_stack_grow dll_Perl_stack_grow
228# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200229# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200230# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
231# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
232# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
233# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200234# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200235# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200236# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237# define Perl_sv_2iv dll_Perl_sv_2iv
238# define Perl_sv_2mortal dll_Perl_sv_2mortal
239# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
240# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
241# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
242# else
243# define Perl_sv_2pv dll_Perl_sv_2pv
244# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200245# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
246# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
247# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100248# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249# define Perl_sv_bless dll_Perl_sv_bless
250# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
251# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
252# else
253# define Perl_sv_catpvn dll_Perl_sv_catpvn
254# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200255# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000256# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
257# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200258# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000260# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
261# define Perl_sv_free2 dll_Perl_sv_free2
262# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263# define Perl_sv_isa dll_Perl_sv_isa
264# define Perl_sv_magic dll_Perl_sv_magic
265# define Perl_sv_setiv dll_Perl_sv_setiv
266# define Perl_sv_setpv dll_Perl_sv_setpv
267# define Perl_sv_setpvn dll_Perl_sv_setpvn
268# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
269# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
270# else
271# define Perl_sv_setsv dll_Perl_sv_setsv
272# endif
273# define Perl_sv_upgrade dll_Perl_sv_upgrade
274# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
275# define Perl_Top_ptr dll_Perl_Top_ptr
276# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
277# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
278# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
279# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
280# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
281# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
282# define Perl_TSv_ptr dll_Perl_TSv_ptr
283# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
284# define Perl_Tna_ptr dll_Perl_Tna_ptr
285# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
286# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
287# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
288# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200289# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000291# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000292# define Perl_sys_term dll_Perl_sys_term
293# define Perl_ISv_ptr dll_Perl_ISv_ptr
294# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
295# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
296# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
297# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
298# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
299# define Perl_Ina_ptr dll_Perl_Ina_ptr
300# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
301# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
302# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
303# define Perl_Iop_ptr dll_Perl_Iop_ptr
304# define Perl_call_list dll_Perl_call_list
305# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
306# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200307# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
308# define Perl_xs_handshake dll_Perl_xs_handshake
309# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
310# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200311# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100312# ifdef USE_ITHREADS
313# define PL_thr_key *dll_PL_thr_key
314# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200315# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100316# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
317# define Perl_hv_iterinit dll_Perl_hv_iterinit
318# define Perl_hv_iterkey dll_Perl_hv_iterkey
319# define Perl_hv_iterval dll_Perl_hv_iterval
320# define Perl_av_fetch dll_Perl_av_fetch
321# define Perl_av_len dll_Perl_av_len
322# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200323# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
324# define PerlIOBase_pushed dll_PerlIOBase_pushed
325# define PerlIO_define_layer dll_PerlIO_define_layer
326# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200327# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
328# define Perl_savetmps dll_Perl_savetmps
329# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000330
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331/*
332 * Declare HANDLE for perl.dll and function pointers.
333 */
334static HANDLE hPerlLib = NULL;
335
336static PerlInterpreter* (*perl_alloc)();
337static void (*perl_construct)(PerlInterpreter*);
338static void (*perl_destruct)(PerlInterpreter*);
339static void (*perl_free)(PerlInterpreter*);
340static int (*perl_run)(PerlInterpreter*);
341static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
342static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200343static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200344# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100345/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200346# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200347static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
348 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200349# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200350static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
351 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200352# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100353# endif
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200354# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar864733a2016-04-02 14:18:01 +0200355static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357static I32 (*Perl_dowantarray)(pTHX);
358static void (*Perl_free_tmps)(pTHX);
359static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200360# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200361static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200362# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200364# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200366# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
367static int (*Perl_mg_get)(pTHX_ SV*);
368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
370static SV* (*Perl_newSV)(pTHX_ STRLEN);
371static SV* (*Perl_newSViv)(pTHX_ IV);
372static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
373static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
374static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
375static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
376static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
377static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
378static SV* (*Perl_call_method)(pTHX_ const char*, I32);
379static void (*Perl_pop_scope)(pTHX);
380static void (*Perl_push_scope)(pTHX);
381static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200382# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200383static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200384# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
386static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200387# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200388static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200389# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200390static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200391# endif
392# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200394# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395static IV (*Perl_sv_2iv)(pTHX_ SV*);
396static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200397# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
399static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200400# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200402# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100403static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200404# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
405static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN*, I32);
406# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200408# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200410# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200412# endif
413# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000414static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
415static 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 +0200416# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417static void (*Perl_sv_free)(pTHX_ SV*);
418static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
419static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
420static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
421static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
422static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200423# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200425# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200427# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200429# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
431static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
432static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
433static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
434static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
435static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
436static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
437static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
438static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
439static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
440static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100441# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200442/* Perl-5.18 has a different Perl_sv_free2 signature. */
443# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
444static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
445# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000446static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200447# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000448static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000449static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200450static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200451# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
452# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000453static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
454static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
455static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
456static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
457static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
458static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
459static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
460static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
461static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
462static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
463static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000464static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
465static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200466# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200467# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200468# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200469static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
470static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100471# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200472
473# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
474# ifdef USE_ITHREADS
475static perl_key* dll_PL_thr_key;
476# endif
477# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200478static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
479static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
480static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200481static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200482# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200483static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100484static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
485static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
486static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
487static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
488static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
489static SSize_t (*Perl_av_len)(pTHX_ AV *);
490static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200491# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200492static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
493static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200494# endif
495# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200496static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200497# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200498
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499/*
500 * Table of name to function pointer of perl.
501 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502static struct {
503 char* name;
504 PERL_PROC* ptr;
505} perl_funcname_table[] = {
506 {"perl_alloc", (PERL_PROC*)&perl_alloc},
507 {"perl_construct", (PERL_PROC*)&perl_construct},
508 {"perl_destruct", (PERL_PROC*)&perl_destruct},
509 {"perl_free", (PERL_PROC*)&perl_free},
510 {"perl_run", (PERL_PROC*)&perl_run},
511 {"perl_parse", (PERL_PROC*)&perl_parse},
512 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
513 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200514# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100515 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200516# endif
517# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200519# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000520 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
521 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
522 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
523 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
524 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200525# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
526 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
527# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000528 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
529 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
530 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
531 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
532 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
533 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
534 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
535 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
536 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
537 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
538 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
539 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
540 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200541# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200542 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200543# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000544 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
545 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200546# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200547 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200548# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200549 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200550# endif
551# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200553# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000554 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
555 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200556# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
558 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200559# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200561# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100562 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200563# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
564 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
565# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200566# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000567 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
568 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200569# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200571# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200573# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
577 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
578 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
579 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
580 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
581 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
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_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200584# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200586# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200588# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
590 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
591 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
592 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
593 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
594 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
595 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
596 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
597 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
598 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
599 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200600# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000601 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000602 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000603 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200604 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200605# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
606# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000607 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000608 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200609 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
610 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000611 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
612 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200613 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000614 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
615 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200616 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
617 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000618 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
619 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200620# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200621# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200622# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200623 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
624 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200625# endif
626# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100627# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200628 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100629# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200630# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
632 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
633 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200634 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200635# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200636 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100637 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
638 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
639 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
640 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
641 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
642 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
643 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200644# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200645 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
646 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200647# endif
648# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200649 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200650# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 {"", NULL},
652};
653
Bram Moolenaar6b107212013-12-11 15:06:40 +0100654/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200655 * For now, only the definitions of S_SvREFCNT_dec are needed in
656 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200657# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200658static void
659S_SvREFCNT_dec(pTHX_ SV *sv)
660{
661 if (LIKELY(sv != NULL)) {
662 U32 rc = SvREFCNT(sv);
663 if (LIKELY(rc > 1))
664 SvREFCNT(sv) = rc - 1;
665 else
666 Perl_sv_free2(aTHX_ sv, rc);
667 }
668}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200669# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100670
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200671/* perl-5.32 needs Perl_SvREFCNT_dec */
672# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
673# define Perl_SvREFCNT_dec S_SvREFCNT_dec
674# endif
675
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200676/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
677# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
678PERL_STATIC_INLINE I32
679S_TOPMARK(pTHX)
680{
681 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
682 "MARK top %p %" IVdf "\n",
683 PL_markstack_ptr,
684 (IV)*PL_markstack_ptr)));
685 return *PL_markstack_ptr;
686}
687
688PERL_STATIC_INLINE I32
689S_POPMARK(pTHX)
690{
691 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
692 "MARK pop %p %" IVdf "\n",
693 (PL_markstack_ptr-1),
694 (IV)*(PL_markstack_ptr-1))));
695 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
696 return *PL_markstack_ptr--;
697}
698# endif
699
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200700/* perl-5.32 needs Perl_POPMARK */
701# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
702# define Perl_POPMARK S_POPMARK
703
704/* perl-5.32 needs Perl_SvTRUE */
705PERL_STATIC_INLINE bool
706Perl_SvTRUE(pTHX_ SV *sv) {
707 if (!LIKELY(sv))
708 return FALSE;
709 SvGETMAGIC(sv);
710 return SvTRUE_nomg_NN(sv);
711}
712# endif
713
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714/*
715 * Make all runtime-links of perl.
716 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200717 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 * 2. Get pointer to perl function by GetProcAddress.
719 * 3. Repeat 2, until get all functions will be used.
720 *
721 * Parameter 'libname' provides name of DLL.
722 * Return OK or FAIL.
723 */
724 static int
725perl_runtime_link_init(char *libname, int verbose)
726{
727 int i;
728
729 if (hPerlLib != NULL)
730 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200731 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 {
733 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100734 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 return FAIL;
736 }
737 for (i = 0; perl_funcname_table[i].ptr; ++i)
738 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200739 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 perl_funcname_table[i].name)))
741 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200742 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 hPerlLib = NULL;
744 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100745 semsg((const char *)_(e_loadfunc), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 return FAIL;
747 }
748 }
749 return OK;
750}
751
752/*
753 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
754 * There were no DLL loaded, return FALSE.
755 */
756 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100757perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100759 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760}
761#endif /* DYNAMIC_PERL */
762
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200763#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
764static void vim_IOLayer_init(void);
765#endif
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767/*
768 * perl_init(): initialize perl interpreter
769 * We have to call perl_parse to initialize some structures,
770 * there's nothing to actually parse.
771 */
772 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100773perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000775 char *bootargs[] = { "VI", NULL };
776 int argc = 3;
777 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778
Bram Moolenaarc236c162008-07-13 17:41:49 +0000779#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000780 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000781#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 perl_interp = perl_alloc();
783 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000784 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
786 VIM_init();
787#ifdef USE_SFIO
788 sfdisc(PerlIO_stdout(), sfdcnewvim());
789 sfdisc(PerlIO_stderr(), sfdcnewvim());
790 sfsetbuf(PerlIO_stdout(), NULL, 0);
791 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200792#elif defined(PERLIO_LAYERS)
793 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794#endif
795}
796
797/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200798 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 */
800 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100801perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802{
803 if (perl_interp)
804 {
805 perl_run(perl_interp);
806 perl_destruct(perl_interp);
807 perl_free(perl_interp);
808 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000809#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100810 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813}
814
815/*
816 * msg_split(): send a message to the message handling routines
817 * split at '\n' first though.
818 */
819 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100820msg_split(
821 char_u *s,
822 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823{
824 char *next;
825 char *token = (char *)s;
826
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000827 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 {
829 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100830 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 token = next;
832 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000833 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100834 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835}
836
837#ifndef FEAT_EVAL
838/*
839 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
840 * work properly.
841 */
842 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100843eval_to_string(
844 char_u *arg UNUSED,
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100845 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846{
847 return NULL;
848}
849#endif
850
851/*
852 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000853 * The b_perl_private/w_perl_private part of the SCR structure points to the
854 * SV, so there can only be one such SV for a particular SCR structure. When
855 * the last reference has gone (DESTROY is called),
856 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 * all references are gone, the value of the SV is reset;
858 * any subsequent use of any of those reference will produce
859 * a warning. (see typemap)
860 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000861
862 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100863newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000864{
865 sv_upgrade(rv, SVt_RV);
866 if (ptr->w_perl_private == NULL)
867 {
868 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100869 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000870 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200871 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000872 SvRV(rv) = ptr->w_perl_private;
873 SvROK_on(rv);
874 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875}
876
Bram Moolenaare344bea2005-09-01 20:46:49 +0000877 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100878newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000879{
880 sv_upgrade(rv, SVt_RV);
881 if (ptr->b_perl_private == NULL)
882 {
883 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100884 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000885 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200886 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000887 SvRV(rv) = ptr->b_perl_private;
888 SvROK_on(rv);
889 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
890}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200892#if 0
893SV *__sv_save[1024];
894int __sv_save_ix;
895# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
896#else
897# define D_Save_Sv(sv) NOOP
898#endif
899
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900/*
901 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200902 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 */
904 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100905perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200907 if (wp->w_perl_private && perl_interp != NULL)
908 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200909 SV *sv = (SV*)wp->w_perl_private;
910 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200911 sv_setiv(sv, 0);
912 SvREFCNT_dec(sv);
913 }
914 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915}
916
917 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100918perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200920 if (bp->b_perl_private && perl_interp != NULL)
921 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200922 SV *sv = (SV *)bp->b_perl_private;
923 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200924 sv_setiv(sv, 0);
925 SvREFCNT_dec(sv);
926 }
927 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928}
929
930#ifndef PROTO
931# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
932I32 cur_val(pTHX_ IV iv, SV *sv);
933# else
934I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936
937/*
938 * Handler for the magic variables $main::curwin and $main::curbuf.
939 * The handler is put into the magic vtbl for these variables.
940 * (This is effectively a C-level equivalent of a tied variable).
941 * There is no "set" function as the variables are read-only.
942 */
943# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
944I32 cur_val(pTHX_ IV iv, SV *sv)
945# else
946I32 cur_val(IV iv, SV *sv)
947# endif
948{
949 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200950
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 if (iv == 0)
952 rv = newWINrv(newSV(0), curwin);
953 else
954 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200955
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200956 if (SvRV(sv) != SvRV(rv))
957 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100958 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200959 sv_setsv(sv, rv);
960
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200961 SvREFCNT_dec(rv);
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 return 0;
964}
965#endif /* !PROTO */
966
967struct ufuncs cw_funcs = { cur_val, 0, 0 };
968struct ufuncs cb_funcs = { cur_val, 0, 1 };
969
970/*
971 * VIM_init(): Vim-specific initialisation.
972 * Make the magical main::curwin and main::curbuf variables
973 */
974 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100975VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976{
977 static char cw[] = "main::curwin";
978 static char cb[] = "main::curbuf";
979 SV *sv;
980
981 sv = perl_get_sv(cw, TRUE);
982 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
983 SvREADONLY_on(sv);
984
985 sv = perl_get_sv(cb, TRUE);
986 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
987 SvREADONLY_on(sv);
988
989 /*
990 * Setup the Safe compartment.
991 * It shouldn't be a fatal error if the Safe module is missing.
992 * XXX: Only shares the 'Msg' routine (which has to be called
993 * like 'Msg(...)').
994 */
995 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
996
997}
998
999#ifdef DYNAMIC_PERL
1000static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
1001#endif
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001002static char *e_perlsandbox = N_("E299: Perl evaluation forbidden in sandbox without the Safe module");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003
1004/*
1005 * ":perl"
1006 */
1007 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001008ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009{
1010 char *err;
1011 char *script;
1012 STRLEN length;
1013 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001014#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017
1018 script = (char *)script_get(eap, eap->arg);
1019 if (eap->skip)
1020 {
1021 vim_free(script);
1022 return;
1023 }
1024
1025 if (perl_interp == NULL)
1026 {
1027#ifdef DYNAMIC_PERL
1028 if (!perl_enabled(TRUE))
1029 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001030 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 vim_free(script);
1032 return;
1033 }
1034#endif
1035 perl_init();
1036 }
1037
1038 {
1039 dSP;
1040 ENTER;
1041 SAVETMPS;
1042
1043 if (script == NULL)
1044 sv = newSVpv((char *)eap->arg, 0);
1045 else
1046 {
1047 sv = newSVpv(script, 0);
1048 vim_free(script);
1049 }
1050
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001051 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001053 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001054# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001055 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001056 emsg(_(e_perlsandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 {
1060 PUSHMARK(SP);
1061 XPUSHs(safe);
1062 XPUSHs(sv);
1063 PUTBACK;
1064 perl_call_method("reval", G_DISCARD);
1065 }
1066 }
1067 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1069
1070 SvREFCNT_dec(sv);
1071
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001072 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073
1074 FREETMPS;
1075 LEAVE;
1076
1077 if (!length)
1078 return;
1079
1080 msg_split((char_u *)err, highlight_attr[HLF_E]);
1081 return;
1082 }
1083}
1084
1085 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001086replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087{
1088 char *str;
1089
1090 if (SvOK(GvSV(PL_defgv)))
1091 {
1092 str = SvPV(GvSV(PL_defgv), PL_na);
1093 ml_replace(*line, (char_u *)str, 1);
1094 changed_bytes(*line, 0);
1095 }
1096 else
1097 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001098 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 deleted_lines_mark(*line, 1L);
1100 --(*end);
1101 --(*line);
1102 }
1103 return OK;
1104}
1105
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001106static struct ref_map_S {
1107 void *vim_ref;
1108 SV *perl_ref;
1109 struct ref_map_S *next;
1110} *ref_map = NULL;
1111
1112 static void
1113ref_map_free(void)
1114{
1115 struct ref_map_S *tofree;
1116 struct ref_map_S *refs = ref_map;
1117
1118 while (refs) {
1119 tofree = refs;
1120 refs = refs->next;
1121 vim_free(tofree);
1122 }
1123 ref_map = NULL;
1124}
1125
1126 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001127ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001128{
1129 struct ref_map_S *refs = ref_map;
1130 int count = 350;
1131
1132 while (refs) {
1133 if (refs->perl_ref == sv)
1134 break;
1135 refs = refs->next;
1136 count--;
1137 }
1138
1139 if (!refs && count > 0) {
1140 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1141 if (!refs)
1142 return NULL;
1143 refs->perl_ref = sv;
1144 refs->vim_ref = NULL;
1145 refs->next = ref_map;
1146 ref_map = refs;
1147 }
1148
1149 return refs;
1150}
1151
1152 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001153perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001154{
1155 if (SvROK(sv))
1156 sv = SvRV(sv);
1157
1158 switch (SvTYPE(sv)) {
1159 case SVt_NULL:
1160 break;
1161 case SVt_NV: /* float */
1162#ifdef FEAT_FLOAT
1163 rettv->v_type = VAR_FLOAT;
1164 rettv->vval.v_float = SvNV(sv);
1165 break;
1166#endif
1167 case SVt_IV: /* integer */
1168 if (!SvROK(sv)) { /* references should be string */
1169 rettv->vval.v_number = SvIV(sv);
1170 break;
1171 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001172 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001173 case SVt_PV: /* string */
1174 {
1175 size_t len = 0;
1176 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001177 char_u *str_to = (char_u*)alloc(
1178 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001179
1180 if (str_to) {
1181 str_to[len] = '\0';
1182
1183 while (len--) {
1184 if (str_from[len] == '\0')
1185 str_to[len] = '\n';
1186 else
1187 str_to[len] = str_from[len];
1188 }
1189 }
1190
1191 rettv->v_type = VAR_STRING;
1192 rettv->vval.v_string = str_to;
1193 break;
1194 }
1195 case SVt_PVAV: /* list */
1196 {
1197 SSize_t size;
1198 listitem_T * item;
1199 SV ** item2;
1200 list_T * list;
1201 struct ref_map_S * refs;
1202
1203 if ((refs = ref_map_find_SV(sv)) == NULL)
1204 return FAIL;
1205
1206 if (refs->vim_ref)
1207 list = (list_T *) refs->vim_ref;
1208 else
1209 {
1210 if ((list = list_alloc()) == NULL)
1211 return FAIL;
1212 refs->vim_ref = list;
1213
1214 for (size = av_len((AV*)sv); size >= 0; size--)
1215 {
1216 if ((item = listitem_alloc()) == NULL)
1217 break;
1218
1219 item->li_tv.v_type = VAR_NUMBER;
1220 item->li_tv.v_lock = 0;
1221 item->li_tv.vval.v_number = 0;
1222 list_insert(list, item, list->lv_first);
1223
1224 item2 = av_fetch((AV *)sv, size, 0);
1225
1226 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001227 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001228 break;
1229 }
1230 }
1231
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001232 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001233 break;
1234 }
1235 case SVt_PVHV: /* dictionary */
1236 {
1237 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001238 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001239 char * key;
1240 dictitem_T * item;
1241 SV * item2;
1242 dict_T * dict;
1243 struct ref_map_S * refs;
1244
1245 if ((refs = ref_map_find_SV(sv)) == NULL)
1246 return FAIL;
1247
1248 if (refs->vim_ref)
1249 dict = (dict_T *) refs->vim_ref;
1250 else
1251 {
1252
1253 if ((dict = dict_alloc()) == NULL)
1254 return FAIL;
1255 refs->vim_ref = dict;
1256
1257 hv_iterinit((HV *)sv);
1258
1259 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1260 {
1261 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001262 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001263
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001264 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001265 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001266 break;
1267 }
1268
1269 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1270 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001271 item->di_tv.v_type = VAR_NUMBER;
1272 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001273
1274 if (dict_add(dict, item) == FAIL) {
1275 dictitem_free(item);
1276 break;
1277 }
1278 item2 = hv_iterval((HV *)sv, entry);
1279 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1280 break;
1281 }
1282 }
1283
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001284 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001285 break;
1286 }
1287 default: /* not convertible */
1288 {
1289 char *val = SvPV_nolen(sv);
1290 rettv->v_type = VAR_STRING;
1291 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1292 break;
1293 }
1294 }
1295 return OK;
1296}
1297
1298/*
1299 * "perleval()"
1300 */
1301 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001302do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001303{
1304 char *err = NULL;
1305 STRLEN err_len = 0;
1306 SV *sv = NULL;
1307#ifdef HAVE_SANDBOX
1308 SV *safe;
1309#endif
1310
1311 if (perl_interp == NULL)
1312 {
1313#ifdef DYNAMIC_PERL
1314 if (!perl_enabled(TRUE))
1315 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001316 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001317 return;
1318 }
1319#endif
1320 perl_init();
1321 }
1322
1323 {
1324 dSP;
1325 ENTER;
1326 SAVETMPS;
1327
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001328 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001329 {
1330 safe = get_sv("VIM::safe", FALSE);
1331# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1332 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001333 emsg(_(e_perlsandbox));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001334 else
1335# endif
1336 {
1337 sv = newSVpv((char *)str, 0);
1338 PUSHMARK(SP);
1339 XPUSHs(safe);
1340 XPUSHs(sv);
1341 PUTBACK;
1342 call_method("reval", G_SCALAR);
1343 SPAGAIN;
1344 SvREFCNT_dec(sv);
1345 sv = POPs;
1346 }
1347 }
1348 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001349 sv = eval_pv((char *)str, 0);
1350
1351 if (sv) {
1352 perl_to_vim(sv, rettv);
1353 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001354 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001355 }
1356 PUTBACK;
1357 FREETMPS;
1358 LEAVE;
1359 }
1360 if (err_len)
1361 msg_split((char_u *)err, highlight_attr[HLF_E]);
1362}
1363
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364/*
1365 * ":perldo".
1366 */
1367 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001368ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369{
1370 STRLEN length;
1371 SV *sv;
1372 char *str;
1373 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001374 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001376 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 return;
1378
1379 if (perl_interp == NULL)
1380 {
1381#ifdef DYNAMIC_PERL
1382 if (!perl_enabled(TRUE))
1383 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001384 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 return;
1386 }
1387#endif
1388 perl_init();
1389 }
1390 {
1391 dSP;
1392 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001393 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1394 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 sv_catpvn(sv, (char *)eap->arg, length);
1396 sv_catpvn(sv, "}", 1);
1397 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1398 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001399 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 if (length)
1401 goto err;
1402
1403 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1404 return;
1405
1406 ENTER;
1407 SAVETMPS;
1408 for (i = eap->line1; i <= eap->line2; i++)
1409 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001410 /* Check the line number, the command my have deleted lines. */
1411 if (i > curbuf->b_ml.ml_line_count)
1412 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001413 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 PUSHMARK(sp);
1415 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001416 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001417 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 break;
1419 SPAGAIN;
1420 if (SvTRUEx(POPs))
1421 {
1422 if (replace_line(&i, &eap->line2) != OK)
1423 {
1424 PUTBACK;
1425 break;
1426 }
1427 }
1428 PUTBACK;
1429 }
1430 FREETMPS;
1431 LEAVE;
1432 check_cursor();
1433 update_screen(NOT_VALID);
1434 if (!length)
1435 return;
1436
1437err:
1438 msg_split((char_u *)str, highlight_attr[HLF_E]);
1439 return;
1440 }
1441}
1442
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001443#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1444typedef struct {
1445 struct _PerlIO base;
1446 int attr;
1447} PerlIOVim;
1448
1449 static IV
1450PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1451 SV *arg, PerlIO_funcs *tab)
1452{
1453 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1454 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001455 if (arg && SvPOK(arg))
1456 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001457 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1458}
1459
1460 static SSize_t
1461PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1462{
1463 char_u *str;
1464 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1465
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001466 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001467 if (str == NULL)
1468 return 0;
1469 msg_split((char_u *)str, s->attr);
1470 vim_free(str);
1471
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001472 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001473}
1474
1475static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1476 sizeof(PerlIO_funcs),
1477 "Vim",
1478 sizeof(PerlIOVim),
1479 PERLIO_K_DUMMY, /* flags */
1480 PerlIOVim_pushed,
1481 NULL, /* popped */
1482 NULL, /* open */
1483 NULL, /* binmode */
1484 NULL, /* arg */
1485 NULL, /* fileno */
1486 NULL, /* dup */
1487 NULL, /* read */
1488 NULL, /* unread */
1489 PerlIOVim_write,
1490 NULL, /* seek */
1491 NULL, /* tell */
1492 NULL, /* close */
1493 NULL, /* flush */
1494 NULL, /* fill */
1495 NULL, /* eof */
1496 NULL, /* error */
1497 NULL, /* clearerr */
1498 NULL, /* setlinebuf */
1499 NULL, /* get_base */
1500 NULL, /* get_bufsiz */
1501 NULL, /* get_ptr */
1502 NULL, /* get_cnt */
1503 NULL /* set_ptrcnt */
1504};
1505
1506/* Use Vim routine for print operator */
1507 static void
1508vim_IOLayer_init(void)
1509{
1510 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1511 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1512 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1513}
1514#endif /* PERLIO_LAYERS && !USE_SFIO */
1515
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516XS(boot_VIM);
1517
1518 static void
1519xs_init(pTHX)
1520{
1521 char *file = __FILE__;
1522
1523 /* DynaLoader is a special case */
1524 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1525 newXS("VIM::bootstrap", boot_VIM, file);
1526}
1527
1528typedef win_T * VIWIN;
1529typedef buf_T * VIBUF;
1530
1531MODULE = VIM PACKAGE = VIM
1532
1533void
1534Msg(text, hl=NULL)
1535 char *text;
1536 char *hl;
1537
1538 PREINIT:
1539 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540
1541 PPCODE:
1542 if (text != NULL)
1543 {
1544 attr = 0;
1545 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001546 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 msg_split((char_u *)text, attr);
1548 }
1549
1550void
1551SetOption(line)
1552 char *line;
1553
1554 PPCODE:
1555 if (line != NULL)
1556 do_set((char_u *)line, 0);
1557 update_screen(NOT_VALID);
1558
1559void
1560DoCommand(line)
1561 char *line;
1562
1563 PPCODE:
1564 if (line != NULL)
1565 do_cmdline_cmd((char_u *)line);
1566
1567void
1568Eval(str)
1569 char *str;
1570
1571 PREINIT:
1572 char_u *value;
1573 PPCODE:
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001574 value = eval_to_string((char_u *)str, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 if (value == NULL)
1576 {
1577 XPUSHs(sv_2mortal(newSViv(0)));
1578 XPUSHs(sv_2mortal(newSVpv("", 0)));
1579 }
1580 else
1581 {
1582 XPUSHs(sv_2mortal(newSViv(1)));
1583 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1584 vim_free(value);
1585 }
1586
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001587SV*
1588Blob(SV* sv)
1589 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001590 STRLEN len;
1591 char *s;
1592 unsigned i;
1593 char buf[3];
1594 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001595
1596 CODE:
1597 s = SvPVbyte(sv, len);
1598 newsv = newSVpv("0z", 2);
1599 for (i = 0; i < len; i++)
1600 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001601 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001602 sv_catpvn(newsv, buf, 2);
1603 }
1604 RETVAL = newsv;
1605 OUTPUT:
1606 RETVAL
1607
Bram Moolenaar071d4272004-06-13 20:20:40 +00001608void
1609Buffers(...)
1610
1611 PREINIT:
1612 buf_T *vimbuf;
1613 int i, b;
1614
1615 PPCODE:
1616 if (items == 0)
1617 {
1618 if (GIMME == G_SCALAR)
1619 {
1620 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001621 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 ++i;
1623
1624 XPUSHs(sv_2mortal(newSViv(i)));
1625 }
1626 else
1627 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001628 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001629 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 }
1631 }
1632 else
1633 {
1634 for (i = 0; i < items; i++)
1635 {
1636 SV *sv = ST(i);
1637 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001638 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639 else
1640 {
1641 char_u *pat;
1642 STRLEN len;
1643
1644 pat = (char_u *)SvPV(sv, len);
1645 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001646 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647 --emsg_off;
1648 }
1649
1650 if (b >= 0)
1651 {
1652 vimbuf = buflist_findnr(b);
1653 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001654 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001655 }
1656 }
1657 }
1658
1659void
1660Windows(...)
1661
1662 PREINIT:
1663 win_T *vimwin;
1664 int i, w;
1665
1666 PPCODE:
1667 if (items == 0)
1668 {
1669 if (GIMME == G_SCALAR)
1670 XPUSHs(sv_2mortal(newSViv(win_count())));
1671 else
1672 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001673 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001674 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 }
1676 }
1677 else
1678 {
1679 for (i = 0; i < items; i++)
1680 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001681 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 vimwin = win_find_nr(w);
1683 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001684 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 }
1686 }
1687
1688MODULE = VIM PACKAGE = VIWIN
1689
1690void
1691DESTROY(win)
1692 VIWIN win
1693
1694 CODE:
1695 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001696 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697
1698SV *
1699Buffer(win)
1700 VIWIN win
1701
1702 CODE:
1703 if (!win_valid(win))
1704 win = curwin;
1705 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1706 OUTPUT:
1707 RETVAL
1708
1709void
1710SetHeight(win, height)
1711 VIWIN win
1712 int height;
1713
1714 PREINIT:
1715 win_T *savewin;
1716
1717 PPCODE:
1718 if (!win_valid(win))
1719 win = curwin;
1720 savewin = curwin;
1721 curwin = win;
1722 win_setheight(height);
1723 curwin = savewin;
1724
1725void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001726Cursor(win, ...)
1727 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728
1729 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001730 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 {
1732 EXTEND(sp, 2);
1733 if (!win_valid(win))
1734 win = curwin;
1735 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1736 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1737 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001738 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 {
1740 int lnum, col;
1741
1742 if (!win_valid(win))
1743 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001744 lnum = (int) SvIV(ST(1));
1745 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 win->w_cursor.lnum = lnum;
1747 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001748 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 check_cursor(); /* put cursor on an existing line */
1750 update_screen(NOT_VALID);
1751 }
1752
1753MODULE = VIM PACKAGE = VIBUF
1754
1755void
1756DESTROY(vimbuf)
1757 VIBUF vimbuf;
1758
1759 CODE:
1760 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001761 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762
1763void
1764Name(vimbuf)
1765 VIBUF vimbuf;
1766
1767 PPCODE:
1768 if (!buf_valid(vimbuf))
1769 vimbuf = curbuf;
1770 /* No file name returns an empty string */
1771 if (vimbuf->b_fname == NULL)
1772 XPUSHs(sv_2mortal(newSVpv("", 0)));
1773 else
1774 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1775
1776void
1777Number(vimbuf)
1778 VIBUF vimbuf;
1779
1780 PPCODE:
1781 if (!buf_valid(vimbuf))
1782 vimbuf = curbuf;
1783 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1784
1785void
1786Count(vimbuf)
1787 VIBUF vimbuf;
1788
1789 PPCODE:
1790 if (!buf_valid(vimbuf))
1791 vimbuf = curbuf;
1792 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1793
1794void
1795Get(vimbuf, ...)
1796 VIBUF vimbuf;
1797
1798 PREINIT:
1799 char_u *line;
1800 int i;
1801 long lnum;
1802 PPCODE:
1803 if (buf_valid(vimbuf))
1804 {
1805 for (i = 1; i < items; i++)
1806 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001807 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1809 {
1810 line = ml_get_buf(vimbuf, lnum, FALSE);
1811 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1812 }
1813 }
1814 }
1815
1816void
1817Set(vimbuf, ...)
1818 VIBUF vimbuf;
1819
1820 PREINIT:
1821 int i;
1822 long lnum;
1823 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824 PPCODE:
1825 if (buf_valid(vimbuf))
1826 {
1827 if (items < 3)
1828 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1829
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001830 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 for(i = 2; i < items; i++, lnum++)
1832 {
1833 line = SvPV(ST(i),PL_na);
1834 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1835 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001836 aco_save_T aco;
1837
1838 /* set curwin/curbuf for "vimbuf" and save some things */
1839 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001840
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 if (u_savesub(lnum) == OK)
1842 {
1843 ml_replace(lnum, (char_u *)line, TRUE);
1844 changed_bytes(lnum, 0);
1845 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001846
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001847 /* restore curwin/curbuf and a few other things */
1848 aucmd_restbuf(&aco);
1849 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 }
1851 }
1852 }
1853
1854void
1855Delete(vimbuf, ...)
1856 VIBUF vimbuf;
1857
1858 PREINIT:
1859 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 PPCODE:
1861 if (buf_valid(vimbuf))
1862 {
1863 if (items == 2)
1864 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001865 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 count = 1;
1867 }
1868 else if (items == 3)
1869 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001870 lnum = (long) SvIV(ST(1));
1871 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001872 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001874 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875 {
1876 lnum -= count;
1877 count = -count;
1878 }
1879 }
1880 if (items >= 2)
1881 {
1882 for (i = 0; i < count; i++)
1883 {
1884 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1885 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001886 aco_save_T aco;
1887
1888 /* set curwin/curbuf for "vimbuf" and save some things */
1889 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001890
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 if (u_savedel(lnum, 1) == OK)
1892 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001893 ml_delete(lnum);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001894 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001897
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001898 /* restore curwin/curbuf and a few other things */
1899 aucmd_restbuf(&aco);
1900 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001901
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 update_curbuf(VALID);
1903 }
1904 }
1905 }
1906 }
1907
1908void
1909Append(vimbuf, ...)
1910 VIBUF vimbuf;
1911
1912 PREINIT:
1913 int i;
1914 long lnum;
1915 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 PPCODE:
1917 if (buf_valid(vimbuf))
1918 {
1919 if (items < 3)
1920 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1921
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001922 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 for (i = 2; i < items; i++, lnum++)
1924 {
1925 line = SvPV(ST(i),PL_na);
1926 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1927 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001928 aco_save_T aco;
1929
1930 /* set curwin/curbuf for "vimbuf" and save some things */
1931 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001932
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 if (u_inssub(lnum + 1) == OK)
1934 {
1935 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1936 appended_lines_mark(lnum, 1L);
1937 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001938
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001939 /* restore curwin/curbuf and a few other things */
1940 aucmd_restbuf(&aco);
1941 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001942
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 update_curbuf(VALID);
1944 }
1945 }
1946 }
1947
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001948#ifdef __GNUC__
1949# pragma GCC diagnostic pop
1950#endif