blob: e54a79d2b30d460d5e06f7805b80edb553d2f956 [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/* Work around for using MSVC and ActivePerl 5.18. */
48#ifdef _MSC_VER
49# define __inline__ __inline
Bram Moolenaare73b38f2020-01-06 21:22:09 +010050
51// Work around for using MSVC and Strawberry Perl 5.30.
52# define __builtin_expect(expr, val) (expr)
Bram Moolenaar207fd752013-12-14 11:50:35 +010053#endif
54
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010055#ifdef __GNUC__
56# pragma GCC diagnostic push
57# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010058#endif
59
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020060#include <EXTERN.h>
61#include <perl.h>
62#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020063#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
64# include <perliol.h>
65#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000066
Bram Moolenaarcf190c62016-06-02 11:54:06 +020067/* Workaround for perl < 5.8.7 */
68#ifndef PERLIO_FUNCS_DECL
69# ifdef PERLIO_FUNCS_CONST
70# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
71# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
72# else
73# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
74# define PERLIO_FUNCS_CAST(funcs) (funcs)
75# endif
76#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020077#ifndef SvREFCNT_inc_void_NN
78# define SvREFCNT_inc_void_NN SvREFCNT_inc
79#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020080
Bram Moolenaar071d4272004-06-13 20:20:40 +000081/*
82 * Work around clashes between Perl and Vim namespace. proto.h doesn't
83 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
84 * we need the CV typedef. proto.h can't be moved to after including
85 * if_perl.h, because we get all sorts of name clashes then.
86 */
87#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020088# ifndef __MINGW32__
89# include "proto/if_perl.pro"
90# include "proto/if_perlsfio.pro"
91# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000092#endif
93
Bram Moolenaar1f402802018-09-21 14:01:27 +020094// Perl compatibility stuff. This should ensure compatibility with older
95// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000096#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020097# include <patchlevel.h>
98# define PERL_REVISION 5
99# define PERL_VERSION PATCHLEVEL
100# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#endif
102
Bram Moolenaar1f402802018-09-21 14:01:27 +0200103
104// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
105#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
Bram Moolenaar4f974752019-02-17 17:44:42 +0100106 && defined(MSWIN) && defined(USE_DYNAMIC_LOADING)
Bram Moolenaar1f402802018-09-21 14:01:27 +0200107# undef XS_EXTERNAL
108# define XS_EXTERNAL(name) XSPROTO(name)
109#endif
110
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000111/*
112 * Quoting Jan Dubois of Active State:
113 * ActivePerl build 822 still identifies itself as 5.8.8 but already
114 * contains many of the changes from the upcoming Perl 5.8.9 release.
115 *
116 * The changes include addition of two symbols (Perl_sv_2iv_flags,
117 * Perl_newXS_flags) not present in earlier releases.
118 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000119 * Jan Dubois suggested the following guarding scheme.
120 *
121 * Active State defined ACTIVEPERL_VERSION as a string in versions before
122 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000123 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000124#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
125# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
126# define PERL589_OR_LATER
127# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000128#endif
129#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
130# define PERL589_OR_LATER
131#endif
132
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100133#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
134 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
135# define PERL5101_OR_LATER
136#endif
137
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200139# define pTHX void
140# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141#endif
142
143#ifndef EXTERN_C
144# define EXTERN_C
145#endif
146
147/* Compatibility hacks over */
148
149static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100150static void xs_init(pTHX);
151static void VIM_init(void);
152EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153
154/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200155 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156 */
157#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200158
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200159# ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar4f974752019-02-17 17:44:42 +0100160# ifdef MSWIN
Bram Moolenaare06c1882010-07-21 22:05:20 +0200161typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200162# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200163typedef int XSINIT_t;
164typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200165# endif
166# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200167typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200168# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200169
Bram Moolenaar4f974752019-02-17 17:44:42 +0100170# ifndef MSWIN
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200171# include <dlfcn.h>
172# define HANDLE void*
173# define PERL_PROC void*
174# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
175# define symbol_from_dll dlsym
176# define close_dll dlclose
177# else
178# define PERL_PROC FARPROC
179# define load_dll vimLoadLib
180# define symbol_from_dll GetProcAddress
181# define close_dll FreeLibrary
182# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183/*
184 * Wrapper defines
185 */
186# define perl_alloc dll_perl_alloc
187# define perl_construct dll_perl_construct
188# define perl_parse dll_perl_parse
189# define perl_run dll_perl_run
190# define perl_destruct dll_perl_destruct
191# define perl_free dll_perl_free
192# define Perl_get_context dll_Perl_get_context
193# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100194# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100195# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# ifndef PROTO
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200198# ifdef PERL_IMPLICIT_CONTEXT
199# define Perl_croak_nocontext dll_Perl_croak_nocontext
200# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201# define Perl_call_argv dll_Perl_call_argv
202# define Perl_call_pv dll_Perl_call_pv
203# define Perl_eval_sv dll_Perl_eval_sv
204# define Perl_get_sv dll_Perl_get_sv
205# define Perl_eval_pv dll_Perl_eval_pv
206# define Perl_call_method dll_Perl_call_method
207# endif
208# define Perl_dowantarray dll_Perl_dowantarray
209# define Perl_free_tmps dll_Perl_free_tmps
210# define Perl_gv_stashpv dll_Perl_gv_stashpv
211# define Perl_markstack_grow dll_Perl_markstack_grow
212# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200213# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
214# define Perl_mg_get dll_Perl_mg_get
215# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216# define Perl_newXS dll_Perl_newXS
217# define Perl_newSV dll_Perl_newSV
218# define Perl_newSViv dll_Perl_newSViv
219# define Perl_newSVpv dll_Perl_newSVpv
220# define Perl_pop_scope dll_Perl_pop_scope
221# define Perl_push_scope dll_Perl_push_scope
222# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200223# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
224# define Perl_save_strlen dll_Perl_save_strlen
225# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define Perl_stack_grow dll_Perl_stack_grow
227# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200228# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200229# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
230# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
231# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
232# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200233# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200234# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200235# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# define Perl_sv_2iv dll_Perl_sv_2iv
237# define Perl_sv_2mortal dll_Perl_sv_2mortal
238# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
239# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
240# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
241# else
242# define Perl_sv_2pv dll_Perl_sv_2pv
243# endif
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200244# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
245# define Perl_sv_2pvbyte_flags dll_Perl_sv_2pvbyte_flags
246# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100247# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248# define Perl_sv_bless dll_Perl_sv_bless
249# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
250# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
251# else
252# define Perl_sv_catpvn dll_Perl_sv_catpvn
253# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200254# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000255# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
256# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200257# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000259# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
260# define Perl_sv_free2 dll_Perl_sv_free2
261# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262# define Perl_sv_isa dll_Perl_sv_isa
263# define Perl_sv_magic dll_Perl_sv_magic
264# define Perl_sv_setiv dll_Perl_sv_setiv
265# define Perl_sv_setpv dll_Perl_sv_setpv
266# define Perl_sv_setpvn dll_Perl_sv_setpvn
267# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
268# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
269# else
270# define Perl_sv_setsv dll_Perl_sv_setsv
271# endif
272# define Perl_sv_upgrade dll_Perl_sv_upgrade
273# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
274# define Perl_Top_ptr dll_Perl_Top_ptr
275# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
276# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
277# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
278# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
279# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
280# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
281# define Perl_TSv_ptr dll_Perl_TSv_ptr
282# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
283# define Perl_Tna_ptr dll_Perl_Tna_ptr
284# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
285# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
286# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
287# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200288# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000290# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000291# define Perl_sys_term dll_Perl_sys_term
292# define Perl_ISv_ptr dll_Perl_ISv_ptr
293# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
294# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
295# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
296# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
297# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
298# define Perl_Ina_ptr dll_Perl_Ina_ptr
299# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
300# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
301# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
302# define Perl_Iop_ptr dll_Perl_Iop_ptr
303# define Perl_call_list dll_Perl_call_list
304# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
305# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200306# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
307# define Perl_xs_handshake dll_Perl_xs_handshake
308# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
309# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200310# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100311# ifdef USE_ITHREADS
312# define PL_thr_key *dll_PL_thr_key
313# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200314# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100315# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
316# define Perl_hv_iterinit dll_Perl_hv_iterinit
317# define Perl_hv_iterkey dll_Perl_hv_iterkey
318# define Perl_hv_iterval dll_Perl_hv_iterval
319# define Perl_av_fetch dll_Perl_av_fetch
320# define Perl_av_len dll_Perl_av_len
321# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200322# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
323# define PerlIOBase_pushed dll_PerlIOBase_pushed
324# define PerlIO_define_layer dll_PerlIO_define_layer
325# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200326# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
327# define Perl_savetmps dll_Perl_savetmps
328# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000329
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330/*
331 * Declare HANDLE for perl.dll and function pointers.
332 */
333static HANDLE hPerlLib = NULL;
334
335static PerlInterpreter* (*perl_alloc)();
336static void (*perl_construct)(PerlInterpreter*);
337static void (*perl_destruct)(PerlInterpreter*);
338static void (*perl_free)(PerlInterpreter*);
339static int (*perl_run)(PerlInterpreter*);
340static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
341static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200342static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200343# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100344/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200345# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200346static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
347 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200348# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200349static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
350 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200351# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100352# endif
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200353# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar864733a2016-04-02 14:18:01 +0200354static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200355# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356static I32 (*Perl_dowantarray)(pTHX);
357static void (*Perl_free_tmps)(pTHX);
358static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200359# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200360static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200361# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200363# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200365# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
366static int (*Perl_mg_get)(pTHX_ SV*);
367# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
369static SV* (*Perl_newSV)(pTHX_ STRLEN);
370static SV* (*Perl_newSViv)(pTHX_ IV);
371static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
372static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
373static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
374static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
375static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
376static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
377static SV* (*Perl_call_method)(pTHX_ const char*, I32);
378static void (*Perl_pop_scope)(pTHX);
379static void (*Perl_push_scope)(pTHX);
380static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200381# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200382static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200383# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
385static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200387static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200388# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200389static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200390# endif
391# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394static IV (*Perl_sv_2iv)(pTHX_ SV*);
395static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200396# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
398static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200399# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100402static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200403# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
404static char* (*Perl_sv_2pvbyte_flags)(pTHX_ SV*, STRLEN*, I32);
405# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200407# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200409# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200411# endif
412# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000413static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
414static 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 +0200415# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416static void (*Perl_sv_free)(pTHX_ SV*);
417static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
418static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
419static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
420static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
421static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200422# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200424# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200426# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000427static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200428# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
430static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
431static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
432static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
433static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
434static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
435static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
436static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
437static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
438static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
439static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100440# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200441/* Perl-5.18 has a different Perl_sv_free2 signature. */
442# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
443static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
444# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000445static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200446# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000447static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000448static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200449static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200450# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
451# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000452static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
453static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
454static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
455static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
456static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
457static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
458static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
459static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
460static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
461static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
462static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000463static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
464static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200465# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200466# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200467# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200468static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
469static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100470# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200471
472# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
473# ifdef USE_ITHREADS
474static perl_key* dll_PL_thr_key;
475# endif
476# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200477static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
478static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
479static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200480static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200481# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200482static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100483static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
484static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
485static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
486static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
487static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
488static SSize_t (*Perl_av_len)(pTHX_ AV *);
489static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200490# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200491static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
492static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200493# endif
494# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200495static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200496# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200497
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498/*
499 * Table of name to function pointer of perl.
500 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000501static struct {
502 char* name;
503 PERL_PROC* ptr;
504} perl_funcname_table[] = {
505 {"perl_alloc", (PERL_PROC*)&perl_alloc},
506 {"perl_construct", (PERL_PROC*)&perl_construct},
507 {"perl_destruct", (PERL_PROC*)&perl_destruct},
508 {"perl_free", (PERL_PROC*)&perl_free},
509 {"perl_run", (PERL_PROC*)&perl_run},
510 {"perl_parse", (PERL_PROC*)&perl_parse},
511 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
512 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200513# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100514 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200515# endif
516# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200518# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
520 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
521 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
522 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
523 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200524# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
525 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
526# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
528 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
529 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
530 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
531 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
532 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
533 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
534 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
535 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
536 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
537 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
538 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
539 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200540# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200541 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
544 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200545# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200546 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200547# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200548 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200549# endif
550# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
554 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200555# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
557 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200560# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100561 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaar895a7a42020-09-10 21:36:11 +0200562# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
563 {"Perl_sv_2pvbyte_flags", (PERL_PROC*)&Perl_sv_2pvbyte_flags},
564# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200565# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000566 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
567 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200568# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200570# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200572# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200574# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
576 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
577 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
578 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
579 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
580 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200581# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200583# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200585# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200587# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000588 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
589 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
590 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
591 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
592 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
593 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
594 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
595 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
596 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
597 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
598 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200599# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000600 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000601 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000602 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200603 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200604# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
605# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000606 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000607 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200608 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
609 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000610 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
611 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200612 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000613 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
614 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200615 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
616 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000617 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
618 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200619# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200620# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200621# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200622 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
623 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200624# endif
625# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100626# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200627 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100628# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200629# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
631 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
632 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200633 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200634# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200635 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100636 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
637 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
638 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
639 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
640 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
641 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
642 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200643# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200644 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
645 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200646# endif
647# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200648 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200649# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 {"", NULL},
651};
652
Bram Moolenaar6b107212013-12-11 15:06:40 +0100653/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200654 * For now, only the definitions of S_SvREFCNT_dec are needed in
655 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200656# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200657static void
658S_SvREFCNT_dec(pTHX_ SV *sv)
659{
660 if (LIKELY(sv != NULL)) {
661 U32 rc = SvREFCNT(sv);
662 if (LIKELY(rc > 1))
663 SvREFCNT(sv) = rc - 1;
664 else
665 Perl_sv_free2(aTHX_ sv, rc);
666 }
667}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200668# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100669
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200670/* perl-5.32 needs Perl_SvREFCNT_dec */
671# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
672# define Perl_SvREFCNT_dec S_SvREFCNT_dec
673# endif
674
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200675/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
676# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
677PERL_STATIC_INLINE I32
678S_TOPMARK(pTHX)
679{
680 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
681 "MARK top %p %" IVdf "\n",
682 PL_markstack_ptr,
683 (IV)*PL_markstack_ptr)));
684 return *PL_markstack_ptr;
685}
686
687PERL_STATIC_INLINE I32
688S_POPMARK(pTHX)
689{
690 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
691 "MARK pop %p %" IVdf "\n",
692 (PL_markstack_ptr-1),
693 (IV)*(PL_markstack_ptr-1))));
694 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
695 return *PL_markstack_ptr--;
696}
697# endif
698
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200699/* perl-5.32 needs Perl_POPMARK */
700# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
701# define Perl_POPMARK S_POPMARK
702
703/* perl-5.32 needs Perl_SvTRUE */
704PERL_STATIC_INLINE bool
705Perl_SvTRUE(pTHX_ SV *sv) {
706 if (!LIKELY(sv))
707 return FALSE;
708 SvGETMAGIC(sv);
709 return SvTRUE_nomg_NN(sv);
710}
711# endif
712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713/*
714 * Make all runtime-links of perl.
715 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200716 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 * 2. Get pointer to perl function by GetProcAddress.
718 * 3. Repeat 2, until get all functions will be used.
719 *
720 * Parameter 'libname' provides name of DLL.
721 * Return OK or FAIL.
722 */
723 static int
724perl_runtime_link_init(char *libname, int verbose)
725{
726 int i;
727
728 if (hPerlLib != NULL)
729 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200730 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731 {
732 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100733 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 return FAIL;
735 }
736 for (i = 0; perl_funcname_table[i].ptr; ++i)
737 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200738 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 perl_funcname_table[i].name)))
740 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200741 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742 hPerlLib = NULL;
743 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100744 semsg((const char *)_(e_loadfunc), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745 return FAIL;
746 }
747 }
748 return OK;
749}
750
751/*
752 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
753 * There were no DLL loaded, return FALSE.
754 */
755 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100756perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100758 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759}
760#endif /* DYNAMIC_PERL */
761
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200762#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
763static void vim_IOLayer_init(void);
764#endif
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766/*
767 * perl_init(): initialize perl interpreter
768 * We have to call perl_parse to initialize some structures,
769 * there's nothing to actually parse.
770 */
771 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100772perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000774 char *bootargs[] = { "VI", NULL };
775 int argc = 3;
776 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000777
Bram Moolenaarc236c162008-07-13 17:41:49 +0000778#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000779 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 perl_interp = perl_alloc();
782 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000783 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
785 VIM_init();
786#ifdef USE_SFIO
787 sfdisc(PerlIO_stdout(), sfdcnewvim());
788 sfdisc(PerlIO_stderr(), sfdcnewvim());
789 sfsetbuf(PerlIO_stdout(), NULL, 0);
790 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200791#elif defined(PERLIO_LAYERS)
792 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793#endif
794}
795
796/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200797 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 */
799 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100800perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801{
802 if (perl_interp)
803 {
804 perl_run(perl_interp);
805 perl_destruct(perl_interp);
806 perl_free(perl_interp);
807 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000808#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100809 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812}
813
814/*
815 * msg_split(): send a message to the message handling routines
816 * split at '\n' first though.
817 */
818 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100819msg_split(
820 char_u *s,
821 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822{
823 char *next;
824 char *token = (char *)s;
825
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000826 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827 {
828 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100829 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 token = next;
831 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000832 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100833 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834}
835
836#ifndef FEAT_EVAL
837/*
838 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
839 * work properly.
840 */
841 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100842eval_to_string(
843 char_u *arg UNUSED,
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100844 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845{
846 return NULL;
847}
848#endif
849
850/*
851 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000852 * The b_perl_private/w_perl_private part of the SCR structure points to the
853 * SV, so there can only be one such SV for a particular SCR structure. When
854 * the last reference has gone (DESTROY is called),
855 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 * all references are gone, the value of the SV is reset;
857 * any subsequent use of any of those reference will produce
858 * a warning. (see typemap)
859 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000860
861 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100862newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000863{
864 sv_upgrade(rv, SVt_RV);
865 if (ptr->w_perl_private == NULL)
866 {
867 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100868 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000869 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200870 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000871 SvRV(rv) = ptr->w_perl_private;
872 SvROK_on(rv);
873 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874}
875
Bram Moolenaare344bea2005-09-01 20:46:49 +0000876 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100877newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000878{
879 sv_upgrade(rv, SVt_RV);
880 if (ptr->b_perl_private == NULL)
881 {
882 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100883 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000884 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200885 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000886 SvRV(rv) = ptr->b_perl_private;
887 SvROK_on(rv);
888 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
889}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200891#if 0
892SV *__sv_save[1024];
893int __sv_save_ix;
894# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
895#else
896# define D_Save_Sv(sv) NOOP
897#endif
898
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899/*
900 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200901 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902 */
903 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100904perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200906 if (wp->w_perl_private && perl_interp != NULL)
907 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200908 SV *sv = (SV*)wp->w_perl_private;
909 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200910 sv_setiv(sv, 0);
911 SvREFCNT_dec(sv);
912 }
913 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914}
915
916 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100917perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200919 if (bp->b_perl_private && perl_interp != NULL)
920 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200921 SV *sv = (SV *)bp->b_perl_private;
922 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200923 sv_setiv(sv, 0);
924 SvREFCNT_dec(sv);
925 }
926 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927}
928
929#ifndef PROTO
930# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
931I32 cur_val(pTHX_ IV iv, SV *sv);
932# else
933I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200934# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935
936/*
937 * Handler for the magic variables $main::curwin and $main::curbuf.
938 * The handler is put into the magic vtbl for these variables.
939 * (This is effectively a C-level equivalent of a tied variable).
940 * There is no "set" function as the variables are read-only.
941 */
942# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
943I32 cur_val(pTHX_ IV iv, SV *sv)
944# else
945I32 cur_val(IV iv, SV *sv)
946# endif
947{
948 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200949
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 if (iv == 0)
951 rv = newWINrv(newSV(0), curwin);
952 else
953 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200954
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200955 if (SvRV(sv) != SvRV(rv))
956 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100957 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200958 sv_setsv(sv, rv);
959
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200960 SvREFCNT_dec(rv);
961
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 return 0;
963}
964#endif /* !PROTO */
965
966struct ufuncs cw_funcs = { cur_val, 0, 0 };
967struct ufuncs cb_funcs = { cur_val, 0, 1 };
968
969/*
970 * VIM_init(): Vim-specific initialisation.
971 * Make the magical main::curwin and main::curbuf variables
972 */
973 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100974VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975{
976 static char cw[] = "main::curwin";
977 static char cb[] = "main::curbuf";
978 SV *sv;
979
980 sv = perl_get_sv(cw, TRUE);
981 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
982 SvREADONLY_on(sv);
983
984 sv = perl_get_sv(cb, TRUE);
985 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
986 SvREADONLY_on(sv);
987
988 /*
989 * Setup the Safe compartment.
990 * It shouldn't be a fatal error if the Safe module is missing.
991 * XXX: Only shares the 'Msg' routine (which has to be called
992 * like 'Msg(...)').
993 */
994 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
995
996}
997
998#ifdef DYNAMIC_PERL
999static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
1000#endif
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001001static char *e_perlsandbox = N_("E299: Perl evaluation forbidden in sandbox without the Safe module");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002
1003/*
1004 * ":perl"
1005 */
1006 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001007ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008{
1009 char *err;
1010 char *script;
1011 STRLEN length;
1012 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001013#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016
1017 script = (char *)script_get(eap, eap->arg);
1018 if (eap->skip)
1019 {
1020 vim_free(script);
1021 return;
1022 }
1023
1024 if (perl_interp == NULL)
1025 {
1026#ifdef DYNAMIC_PERL
1027 if (!perl_enabled(TRUE))
1028 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001029 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030 vim_free(script);
1031 return;
1032 }
1033#endif
1034 perl_init();
1035 }
1036
1037 {
1038 dSP;
1039 ENTER;
1040 SAVETMPS;
1041
1042 if (script == NULL)
1043 sv = newSVpv((char *)eap->arg, 0);
1044 else
1045 {
1046 sv = newSVpv(script, 0);
1047 vim_free(script);
1048 }
1049
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001050 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001052 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001053# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001054 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001055 emsg(_(e_perlsandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001057# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 {
1059 PUSHMARK(SP);
1060 XPUSHs(safe);
1061 XPUSHs(sv);
1062 PUTBACK;
1063 perl_call_method("reval", G_DISCARD);
1064 }
1065 }
1066 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1068
1069 SvREFCNT_dec(sv);
1070
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001071 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072
1073 FREETMPS;
1074 LEAVE;
1075
1076 if (!length)
1077 return;
1078
1079 msg_split((char_u *)err, highlight_attr[HLF_E]);
1080 return;
1081 }
1082}
1083
1084 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001085replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086{
1087 char *str;
1088
1089 if (SvOK(GvSV(PL_defgv)))
1090 {
1091 str = SvPV(GvSV(PL_defgv), PL_na);
1092 ml_replace(*line, (char_u *)str, 1);
1093 changed_bytes(*line, 0);
1094 }
1095 else
1096 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001097 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098 deleted_lines_mark(*line, 1L);
1099 --(*end);
1100 --(*line);
1101 }
1102 return OK;
1103}
1104
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001105static struct ref_map_S {
1106 void *vim_ref;
1107 SV *perl_ref;
1108 struct ref_map_S *next;
1109} *ref_map = NULL;
1110
1111 static void
1112ref_map_free(void)
1113{
1114 struct ref_map_S *tofree;
1115 struct ref_map_S *refs = ref_map;
1116
1117 while (refs) {
1118 tofree = refs;
1119 refs = refs->next;
1120 vim_free(tofree);
1121 }
1122 ref_map = NULL;
1123}
1124
1125 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001126ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001127{
1128 struct ref_map_S *refs = ref_map;
1129 int count = 350;
1130
1131 while (refs) {
1132 if (refs->perl_ref == sv)
1133 break;
1134 refs = refs->next;
1135 count--;
1136 }
1137
1138 if (!refs && count > 0) {
1139 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1140 if (!refs)
1141 return NULL;
1142 refs->perl_ref = sv;
1143 refs->vim_ref = NULL;
1144 refs->next = ref_map;
1145 ref_map = refs;
1146 }
1147
1148 return refs;
1149}
1150
1151 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001152perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001153{
1154 if (SvROK(sv))
1155 sv = SvRV(sv);
1156
1157 switch (SvTYPE(sv)) {
1158 case SVt_NULL:
1159 break;
1160 case SVt_NV: /* float */
1161#ifdef FEAT_FLOAT
1162 rettv->v_type = VAR_FLOAT;
1163 rettv->vval.v_float = SvNV(sv);
1164 break;
1165#endif
1166 case SVt_IV: /* integer */
1167 if (!SvROK(sv)) { /* references should be string */
1168 rettv->vval.v_number = SvIV(sv);
1169 break;
1170 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001171 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001172 case SVt_PV: /* string */
1173 {
1174 size_t len = 0;
1175 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001176 char_u *str_to = (char_u*)alloc(
1177 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001178
1179 if (str_to) {
1180 str_to[len] = '\0';
1181
1182 while (len--) {
1183 if (str_from[len] == '\0')
1184 str_to[len] = '\n';
1185 else
1186 str_to[len] = str_from[len];
1187 }
1188 }
1189
1190 rettv->v_type = VAR_STRING;
1191 rettv->vval.v_string = str_to;
1192 break;
1193 }
1194 case SVt_PVAV: /* list */
1195 {
1196 SSize_t size;
1197 listitem_T * item;
1198 SV ** item2;
1199 list_T * list;
1200 struct ref_map_S * refs;
1201
1202 if ((refs = ref_map_find_SV(sv)) == NULL)
1203 return FAIL;
1204
1205 if (refs->vim_ref)
1206 list = (list_T *) refs->vim_ref;
1207 else
1208 {
1209 if ((list = list_alloc()) == NULL)
1210 return FAIL;
1211 refs->vim_ref = list;
1212
1213 for (size = av_len((AV*)sv); size >= 0; size--)
1214 {
1215 if ((item = listitem_alloc()) == NULL)
1216 break;
1217
1218 item->li_tv.v_type = VAR_NUMBER;
1219 item->li_tv.v_lock = 0;
1220 item->li_tv.vval.v_number = 0;
1221 list_insert(list, item, list->lv_first);
1222
1223 item2 = av_fetch((AV *)sv, size, 0);
1224
1225 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001226 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001227 break;
1228 }
1229 }
1230
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001231 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001232 break;
1233 }
1234 case SVt_PVHV: /* dictionary */
1235 {
1236 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001237 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001238 char * key;
1239 dictitem_T * item;
1240 SV * item2;
1241 dict_T * dict;
1242 struct ref_map_S * refs;
1243
1244 if ((refs = ref_map_find_SV(sv)) == NULL)
1245 return FAIL;
1246
1247 if (refs->vim_ref)
1248 dict = (dict_T *) refs->vim_ref;
1249 else
1250 {
1251
1252 if ((dict = dict_alloc()) == NULL)
1253 return FAIL;
1254 refs->vim_ref = dict;
1255
1256 hv_iterinit((HV *)sv);
1257
1258 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1259 {
1260 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001261 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001262
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001263 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001264 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001265 break;
1266 }
1267
1268 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1269 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001270 item->di_tv.v_type = VAR_NUMBER;
1271 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001272
1273 if (dict_add(dict, item) == FAIL) {
1274 dictitem_free(item);
1275 break;
1276 }
1277 item2 = hv_iterval((HV *)sv, entry);
1278 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1279 break;
1280 }
1281 }
1282
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001283 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001284 break;
1285 }
1286 default: /* not convertible */
1287 {
1288 char *val = SvPV_nolen(sv);
1289 rettv->v_type = VAR_STRING;
1290 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1291 break;
1292 }
1293 }
1294 return OK;
1295}
1296
1297/*
1298 * "perleval()"
1299 */
1300 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001301do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001302{
1303 char *err = NULL;
1304 STRLEN err_len = 0;
1305 SV *sv = NULL;
1306#ifdef HAVE_SANDBOX
1307 SV *safe;
1308#endif
1309
1310 if (perl_interp == NULL)
1311 {
1312#ifdef DYNAMIC_PERL
1313 if (!perl_enabled(TRUE))
1314 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001315 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001316 return;
1317 }
1318#endif
1319 perl_init();
1320 }
1321
1322 {
1323 dSP;
1324 ENTER;
1325 SAVETMPS;
1326
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001327 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001328 {
1329 safe = get_sv("VIM::safe", FALSE);
1330# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1331 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001332 emsg(_(e_perlsandbox));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001333 else
1334# endif
1335 {
1336 sv = newSVpv((char *)str, 0);
1337 PUSHMARK(SP);
1338 XPUSHs(safe);
1339 XPUSHs(sv);
1340 PUTBACK;
1341 call_method("reval", G_SCALAR);
1342 SPAGAIN;
1343 SvREFCNT_dec(sv);
1344 sv = POPs;
1345 }
1346 }
1347 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001348 sv = eval_pv((char *)str, 0);
1349
1350 if (sv) {
1351 perl_to_vim(sv, rettv);
1352 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001353 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001354 }
1355 PUTBACK;
1356 FREETMPS;
1357 LEAVE;
1358 }
1359 if (err_len)
1360 msg_split((char_u *)err, highlight_attr[HLF_E]);
1361}
1362
Bram Moolenaar071d4272004-06-13 20:20:40 +00001363/*
1364 * ":perldo".
1365 */
1366 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001367ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368{
1369 STRLEN length;
1370 SV *sv;
1371 char *str;
1372 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001373 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001375 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 return;
1377
1378 if (perl_interp == NULL)
1379 {
1380#ifdef DYNAMIC_PERL
1381 if (!perl_enabled(TRUE))
1382 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001383 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 return;
1385 }
1386#endif
1387 perl_init();
1388 }
1389 {
1390 dSP;
1391 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001392 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1393 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 sv_catpvn(sv, (char *)eap->arg, length);
1395 sv_catpvn(sv, "}", 1);
1396 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1397 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001398 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (length)
1400 goto err;
1401
1402 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1403 return;
1404
1405 ENTER;
1406 SAVETMPS;
1407 for (i = eap->line1; i <= eap->line2; i++)
1408 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001409 /* Check the line number, the command my have deleted lines. */
1410 if (i > curbuf->b_ml.ml_line_count)
1411 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001412 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 PUSHMARK(sp);
1414 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001415 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001416 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 break;
1418 SPAGAIN;
1419 if (SvTRUEx(POPs))
1420 {
1421 if (replace_line(&i, &eap->line2) != OK)
1422 {
1423 PUTBACK;
1424 break;
1425 }
1426 }
1427 PUTBACK;
1428 }
1429 FREETMPS;
1430 LEAVE;
1431 check_cursor();
1432 update_screen(NOT_VALID);
1433 if (!length)
1434 return;
1435
1436err:
1437 msg_split((char_u *)str, highlight_attr[HLF_E]);
1438 return;
1439 }
1440}
1441
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001442#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1443typedef struct {
1444 struct _PerlIO base;
1445 int attr;
1446} PerlIOVim;
1447
1448 static IV
1449PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1450 SV *arg, PerlIO_funcs *tab)
1451{
1452 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1453 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001454 if (arg && SvPOK(arg))
1455 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001456 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1457}
1458
1459 static SSize_t
1460PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1461{
1462 char_u *str;
1463 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1464
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001465 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001466 if (str == NULL)
1467 return 0;
1468 msg_split((char_u *)str, s->attr);
1469 vim_free(str);
1470
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001471 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001472}
1473
1474static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1475 sizeof(PerlIO_funcs),
1476 "Vim",
1477 sizeof(PerlIOVim),
1478 PERLIO_K_DUMMY, /* flags */
1479 PerlIOVim_pushed,
1480 NULL, /* popped */
1481 NULL, /* open */
1482 NULL, /* binmode */
1483 NULL, /* arg */
1484 NULL, /* fileno */
1485 NULL, /* dup */
1486 NULL, /* read */
1487 NULL, /* unread */
1488 PerlIOVim_write,
1489 NULL, /* seek */
1490 NULL, /* tell */
1491 NULL, /* close */
1492 NULL, /* flush */
1493 NULL, /* fill */
1494 NULL, /* eof */
1495 NULL, /* error */
1496 NULL, /* clearerr */
1497 NULL, /* setlinebuf */
1498 NULL, /* get_base */
1499 NULL, /* get_bufsiz */
1500 NULL, /* get_ptr */
1501 NULL, /* get_cnt */
1502 NULL /* set_ptrcnt */
1503};
1504
1505/* Use Vim routine for print operator */
1506 static void
1507vim_IOLayer_init(void)
1508{
1509 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1510 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1511 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1512}
1513#endif /* PERLIO_LAYERS && !USE_SFIO */
1514
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515XS(boot_VIM);
1516
1517 static void
1518xs_init(pTHX)
1519{
1520 char *file = __FILE__;
1521
1522 /* DynaLoader is a special case */
1523 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1524 newXS("VIM::bootstrap", boot_VIM, file);
1525}
1526
1527typedef win_T * VIWIN;
1528typedef buf_T * VIBUF;
1529
1530MODULE = VIM PACKAGE = VIM
1531
1532void
1533Msg(text, hl=NULL)
1534 char *text;
1535 char *hl;
1536
1537 PREINIT:
1538 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539
1540 PPCODE:
1541 if (text != NULL)
1542 {
1543 attr = 0;
1544 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001545 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 msg_split((char_u *)text, attr);
1547 }
1548
1549void
1550SetOption(line)
1551 char *line;
1552
1553 PPCODE:
1554 if (line != NULL)
1555 do_set((char_u *)line, 0);
1556 update_screen(NOT_VALID);
1557
1558void
1559DoCommand(line)
1560 char *line;
1561
1562 PPCODE:
1563 if (line != NULL)
1564 do_cmdline_cmd((char_u *)line);
1565
1566void
1567Eval(str)
1568 char *str;
1569
1570 PREINIT:
1571 char_u *value;
1572 PPCODE:
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001573 value = eval_to_string((char_u *)str, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 if (value == NULL)
1575 {
1576 XPUSHs(sv_2mortal(newSViv(0)));
1577 XPUSHs(sv_2mortal(newSVpv("", 0)));
1578 }
1579 else
1580 {
1581 XPUSHs(sv_2mortal(newSViv(1)));
1582 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1583 vim_free(value);
1584 }
1585
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001586SV*
1587Blob(SV* sv)
1588 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001589 STRLEN len;
1590 char *s;
1591 unsigned i;
1592 char buf[3];
1593 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001594
1595 CODE:
1596 s = SvPVbyte(sv, len);
1597 newsv = newSVpv("0z", 2);
1598 for (i = 0; i < len; i++)
1599 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001600 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001601 sv_catpvn(newsv, buf, 2);
1602 }
1603 RETVAL = newsv;
1604 OUTPUT:
1605 RETVAL
1606
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607void
1608Buffers(...)
1609
1610 PREINIT:
1611 buf_T *vimbuf;
1612 int i, b;
1613
1614 PPCODE:
1615 if (items == 0)
1616 {
1617 if (GIMME == G_SCALAR)
1618 {
1619 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001620 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 ++i;
1622
1623 XPUSHs(sv_2mortal(newSViv(i)));
1624 }
1625 else
1626 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001627 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001628 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 }
1630 }
1631 else
1632 {
1633 for (i = 0; i < items; i++)
1634 {
1635 SV *sv = ST(i);
1636 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001637 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 else
1639 {
1640 char_u *pat;
1641 STRLEN len;
1642
1643 pat = (char_u *)SvPV(sv, len);
1644 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001645 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 --emsg_off;
1647 }
1648
1649 if (b >= 0)
1650 {
1651 vimbuf = buflist_findnr(b);
1652 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001653 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 }
1655 }
1656 }
1657
1658void
1659Windows(...)
1660
1661 PREINIT:
1662 win_T *vimwin;
1663 int i, w;
1664
1665 PPCODE:
1666 if (items == 0)
1667 {
1668 if (GIMME == G_SCALAR)
1669 XPUSHs(sv_2mortal(newSViv(win_count())));
1670 else
1671 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001672 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001673 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 }
1675 }
1676 else
1677 {
1678 for (i = 0; i < items; i++)
1679 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001680 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681 vimwin = win_find_nr(w);
1682 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001683 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 }
1685 }
1686
1687MODULE = VIM PACKAGE = VIWIN
1688
1689void
1690DESTROY(win)
1691 VIWIN win
1692
1693 CODE:
1694 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001695 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
1697SV *
1698Buffer(win)
1699 VIWIN win
1700
1701 CODE:
1702 if (!win_valid(win))
1703 win = curwin;
1704 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1705 OUTPUT:
1706 RETVAL
1707
1708void
1709SetHeight(win, height)
1710 VIWIN win
1711 int height;
1712
1713 PREINIT:
1714 win_T *savewin;
1715
1716 PPCODE:
1717 if (!win_valid(win))
1718 win = curwin;
1719 savewin = curwin;
1720 curwin = win;
1721 win_setheight(height);
1722 curwin = savewin;
1723
1724void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001725Cursor(win, ...)
1726 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727
1728 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001729 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 {
1731 EXTEND(sp, 2);
1732 if (!win_valid(win))
1733 win = curwin;
1734 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1735 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1736 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001737 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 {
1739 int lnum, col;
1740
1741 if (!win_valid(win))
1742 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001743 lnum = (int) SvIV(ST(1));
1744 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 win->w_cursor.lnum = lnum;
1746 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001747 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001748 check_cursor(); /* put cursor on an existing line */
1749 update_screen(NOT_VALID);
1750 }
1751
1752MODULE = VIM PACKAGE = VIBUF
1753
1754void
1755DESTROY(vimbuf)
1756 VIBUF vimbuf;
1757
1758 CODE:
1759 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001760 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761
1762void
1763Name(vimbuf)
1764 VIBUF vimbuf;
1765
1766 PPCODE:
1767 if (!buf_valid(vimbuf))
1768 vimbuf = curbuf;
1769 /* No file name returns an empty string */
1770 if (vimbuf->b_fname == NULL)
1771 XPUSHs(sv_2mortal(newSVpv("", 0)));
1772 else
1773 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1774
1775void
1776Number(vimbuf)
1777 VIBUF vimbuf;
1778
1779 PPCODE:
1780 if (!buf_valid(vimbuf))
1781 vimbuf = curbuf;
1782 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1783
1784void
1785Count(vimbuf)
1786 VIBUF vimbuf;
1787
1788 PPCODE:
1789 if (!buf_valid(vimbuf))
1790 vimbuf = curbuf;
1791 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1792
1793void
1794Get(vimbuf, ...)
1795 VIBUF vimbuf;
1796
1797 PREINIT:
1798 char_u *line;
1799 int i;
1800 long lnum;
1801 PPCODE:
1802 if (buf_valid(vimbuf))
1803 {
1804 for (i = 1; i < items; i++)
1805 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001806 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1808 {
1809 line = ml_get_buf(vimbuf, lnum, FALSE);
1810 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1811 }
1812 }
1813 }
1814
1815void
1816Set(vimbuf, ...)
1817 VIBUF vimbuf;
1818
1819 PREINIT:
1820 int i;
1821 long lnum;
1822 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001823 PPCODE:
1824 if (buf_valid(vimbuf))
1825 {
1826 if (items < 3)
1827 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1828
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001829 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 for(i = 2; i < items; i++, lnum++)
1831 {
1832 line = SvPV(ST(i),PL_na);
1833 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1834 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001835 aco_save_T aco;
1836
1837 /* set curwin/curbuf for "vimbuf" and save some things */
1838 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001839
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 if (u_savesub(lnum) == OK)
1841 {
1842 ml_replace(lnum, (char_u *)line, TRUE);
1843 changed_bytes(lnum, 0);
1844 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001845
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001846 /* restore curwin/curbuf and a few other things */
1847 aucmd_restbuf(&aco);
1848 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850 }
1851 }
1852
1853void
1854Delete(vimbuf, ...)
1855 VIBUF vimbuf;
1856
1857 PREINIT:
1858 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 PPCODE:
1860 if (buf_valid(vimbuf))
1861 {
1862 if (items == 2)
1863 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001864 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 count = 1;
1866 }
1867 else if (items == 3)
1868 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001869 lnum = (long) SvIV(ST(1));
1870 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001871 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001873 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 {
1875 lnum -= count;
1876 count = -count;
1877 }
1878 }
1879 if (items >= 2)
1880 {
1881 for (i = 0; i < count; i++)
1882 {
1883 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1884 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001885 aco_save_T aco;
1886
1887 /* set curwin/curbuf for "vimbuf" and save some things */
1888 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001889
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 if (u_savedel(lnum, 1) == OK)
1891 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001892 ml_delete(lnum);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001893 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001896
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001897 /* restore curwin/curbuf and a few other things */
1898 aucmd_restbuf(&aco);
1899 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001900
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 update_curbuf(VALID);
1902 }
1903 }
1904 }
1905 }
1906
1907void
1908Append(vimbuf, ...)
1909 VIBUF vimbuf;
1910
1911 PREINIT:
1912 int i;
1913 long lnum;
1914 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915 PPCODE:
1916 if (buf_valid(vimbuf))
1917 {
1918 if (items < 3)
1919 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1920
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001921 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 for (i = 2; i < items; i++, lnum++)
1923 {
1924 line = SvPV(ST(i),PL_na);
1925 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1926 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001927 aco_save_T aco;
1928
1929 /* set curwin/curbuf for "vimbuf" and save some things */
1930 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001931
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 if (u_inssub(lnum + 1) == OK)
1933 {
1934 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1935 appended_lines_mark(lnum, 1L);
1936 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001937
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001938 /* restore curwin/curbuf and a few other things */
1939 aucmd_restbuf(&aco);
1940 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001941
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 update_curbuf(VALID);
1943 }
1944 }
1945 }
1946
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001947#ifdef __GNUC__
1948# pragma GCC diagnostic pop
1949#endif