blob: cad571c5c7b8e98e8d22b4796f5215c453193d58 [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 Moolenaar6e5ea8d2019-01-12 22:47:31 +0100244# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245# define Perl_sv_bless dll_Perl_sv_bless
246# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
247# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
248# else
249# define Perl_sv_catpvn dll_Perl_sv_catpvn
250# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200251# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000252# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
253# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200254# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000256# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
257# define Perl_sv_free2 dll_Perl_sv_free2
258# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259# define Perl_sv_isa dll_Perl_sv_isa
260# define Perl_sv_magic dll_Perl_sv_magic
261# define Perl_sv_setiv dll_Perl_sv_setiv
262# define Perl_sv_setpv dll_Perl_sv_setpv
263# define Perl_sv_setpvn dll_Perl_sv_setpvn
264# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
265# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
266# else
267# define Perl_sv_setsv dll_Perl_sv_setsv
268# endif
269# define Perl_sv_upgrade dll_Perl_sv_upgrade
270# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
271# define Perl_Top_ptr dll_Perl_Top_ptr
272# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
273# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
274# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
275# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
276# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
277# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
278# define Perl_TSv_ptr dll_Perl_TSv_ptr
279# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
280# define Perl_Tna_ptr dll_Perl_Tna_ptr
281# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
282# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
283# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
284# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200285# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000287# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000288# define Perl_sys_term dll_Perl_sys_term
289# define Perl_ISv_ptr dll_Perl_ISv_ptr
290# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
291# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
292# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
293# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
294# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
295# define Perl_Ina_ptr dll_Perl_Ina_ptr
296# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
297# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
298# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
299# define Perl_Iop_ptr dll_Perl_Iop_ptr
300# define Perl_call_list dll_Perl_call_list
301# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
302# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200303# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
304# define Perl_xs_handshake dll_Perl_xs_handshake
305# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
306# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200307# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100308# ifdef USE_ITHREADS
309# define PL_thr_key *dll_PL_thr_key
310# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200311# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100312# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
313# define Perl_hv_iterinit dll_Perl_hv_iterinit
314# define Perl_hv_iterkey dll_Perl_hv_iterkey
315# define Perl_hv_iterval dll_Perl_hv_iterval
316# define Perl_av_fetch dll_Perl_av_fetch
317# define Perl_av_len dll_Perl_av_len
318# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200319# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
320# define PerlIOBase_pushed dll_PerlIOBase_pushed
321# define PerlIO_define_layer dll_PerlIO_define_layer
322# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200323# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
324# define Perl_savetmps dll_Perl_savetmps
325# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000326
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327/*
328 * Declare HANDLE for perl.dll and function pointers.
329 */
330static HANDLE hPerlLib = NULL;
331
332static PerlInterpreter* (*perl_alloc)();
333static void (*perl_construct)(PerlInterpreter*);
334static void (*perl_destruct)(PerlInterpreter*);
335static void (*perl_free)(PerlInterpreter*);
336static int (*perl_run)(PerlInterpreter*);
337static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
338static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200339static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200340# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100341/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200342# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200343static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
344 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200345# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200346static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
347 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200348# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100349# endif
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200350# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar864733a2016-04-02 14:18:01 +0200351static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar81ea1df2020-04-11 18:01:41 +0200352# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353static I32 (*Perl_dowantarray)(pTHX);
354static void (*Perl_free_tmps)(pTHX);
355static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200356# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200357static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200358# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200362# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
363static int (*Perl_mg_get)(pTHX_ SV*);
364# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
366static SV* (*Perl_newSV)(pTHX_ STRLEN);
367static SV* (*Perl_newSViv)(pTHX_ IV);
368static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
369static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
370static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
371static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
372static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
373static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
374static SV* (*Perl_call_method)(pTHX_ const char*, I32);
375static void (*Perl_pop_scope)(pTHX);
376static void (*Perl_push_scope)(pTHX);
377static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200378# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200379static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200380# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
382static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200383# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200384static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200385# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200386static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200387# endif
388# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200390# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391static IV (*Perl_sv_2iv)(pTHX_ SV*);
392static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200393# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
395static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200396# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200398# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100399static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200401# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200403# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200405# endif
406# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000407static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
408static 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 +0200409# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410static void (*Perl_sv_free)(pTHX_ SV*);
411static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
412static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
413static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
414static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
415static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200416# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200418# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200420# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200422# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
424static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
425static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
426static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
427static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
428static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
429static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
430static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
431static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
432static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
433static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100434# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200435/* Perl-5.18 has a different Perl_sv_free2 signature. */
436# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
437static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
438# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000439static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200440# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000441static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000442static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200443static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200444# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
445# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000446static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
447static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
448static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
449static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
450static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
451static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
452static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
453static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
454static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
455static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
456static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000457static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
458static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200459# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200460# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200461# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200462static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
463static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100464# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200465
466# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
467# ifdef USE_ITHREADS
468static perl_key* dll_PL_thr_key;
469# endif
470# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200471static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
472static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
473static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200474static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200475# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200476static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100477static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
478static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
479static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
480static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
481static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
482static SSize_t (*Perl_av_len)(pTHX_ AV *);
483static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200484# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200485static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
486static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200487# endif
488# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200489static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200490# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200491
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492/*
493 * Table of name to function pointer of perl.
494 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495static struct {
496 char* name;
497 PERL_PROC* ptr;
498} perl_funcname_table[] = {
499 {"perl_alloc", (PERL_PROC*)&perl_alloc},
500 {"perl_construct", (PERL_PROC*)&perl_construct},
501 {"perl_destruct", (PERL_PROC*)&perl_destruct},
502 {"perl_free", (PERL_PROC*)&perl_free},
503 {"perl_run", (PERL_PROC*)&perl_run},
504 {"perl_parse", (PERL_PROC*)&perl_parse},
505 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
506 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200507# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100508 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200509# endif
510# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200512# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
514 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
515 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
516 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
517 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200518# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
519 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
520# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
522 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
523 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
524 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
525 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
526 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
527 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
528 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
529 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
530 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
531 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
532 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
533 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200534# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200535 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200536# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
538 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200539# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200540 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200541# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200542 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200543# endif
544# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200546# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
548 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200549# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
551 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200554# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100555 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200556# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000557 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
558 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200559# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200561# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200563# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200565# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
567 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
568 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
569 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
570 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
571 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200572# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200574# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200576# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200578# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
580 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
581 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
582 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
583 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
584 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
585 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
586 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
587 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
588 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
589 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200590# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000591 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000592 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000593 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200594 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200595# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
596# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000597 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000598 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200599 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
600 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000601 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
602 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200603 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000604 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
605 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200606 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
607 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000608 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
609 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200610# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200611# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200612# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200613 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
614 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200615# endif
616# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100617# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200618 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100619# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200620# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
622 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
623 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200624 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200625# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200626 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100627 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
628 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
629 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
630 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
631 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
632 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
633 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200634# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200635 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
636 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200637# endif
638# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200639 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200640# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000641 {"", NULL},
642};
643
Bram Moolenaar6b107212013-12-11 15:06:40 +0100644/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200645 * For now, only the definitions of S_SvREFCNT_dec are needed in
646 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200647# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200648static void
649S_SvREFCNT_dec(pTHX_ SV *sv)
650{
651 if (LIKELY(sv != NULL)) {
652 U32 rc = SvREFCNT(sv);
653 if (LIKELY(rc > 1))
654 SvREFCNT(sv) = rc - 1;
655 else
656 Perl_sv_free2(aTHX_ sv, rc);
657 }
658}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200659# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100660
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200661/* perl-5.32 needs Perl_SvREFCNT_dec */
662# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
663# define Perl_SvREFCNT_dec S_SvREFCNT_dec
664# endif
665
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200666/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
667# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
668PERL_STATIC_INLINE I32
669S_TOPMARK(pTHX)
670{
671 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
672 "MARK top %p %" IVdf "\n",
673 PL_markstack_ptr,
674 (IV)*PL_markstack_ptr)));
675 return *PL_markstack_ptr;
676}
677
678PERL_STATIC_INLINE I32
679S_POPMARK(pTHX)
680{
681 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
682 "MARK pop %p %" IVdf "\n",
683 (PL_markstack_ptr-1),
684 (IV)*(PL_markstack_ptr-1))));
685 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
686 return *PL_markstack_ptr--;
687}
688# endif
689
Bram Moolenaarf5433fb2020-06-21 20:06:54 +0200690/* perl-5.32 needs Perl_POPMARK */
691# if (PERL_REVISION == 5) && (PERL_VERSION >= 32)
692# define Perl_POPMARK S_POPMARK
693
694/* perl-5.32 needs Perl_SvTRUE */
695PERL_STATIC_INLINE bool
696Perl_SvTRUE(pTHX_ SV *sv) {
697 if (!LIKELY(sv))
698 return FALSE;
699 SvGETMAGIC(sv);
700 return SvTRUE_nomg_NN(sv);
701}
702# endif
703
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704/*
705 * Make all runtime-links of perl.
706 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200707 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 * 2. Get pointer to perl function by GetProcAddress.
709 * 3. Repeat 2, until get all functions will be used.
710 *
711 * Parameter 'libname' provides name of DLL.
712 * Return OK or FAIL.
713 */
714 static int
715perl_runtime_link_init(char *libname, int verbose)
716{
717 int i;
718
719 if (hPerlLib != NULL)
720 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200721 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 {
723 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100724 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 return FAIL;
726 }
727 for (i = 0; perl_funcname_table[i].ptr; ++i)
728 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200729 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730 perl_funcname_table[i].name)))
731 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200732 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 hPerlLib = NULL;
734 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100735 semsg((const char *)_(e_loadfunc), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 return FAIL;
737 }
738 }
739 return OK;
740}
741
742/*
743 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
744 * There were no DLL loaded, return FALSE.
745 */
746 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100747perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100749 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750}
751#endif /* DYNAMIC_PERL */
752
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200753#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
754static void vim_IOLayer_init(void);
755#endif
756
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757/*
758 * perl_init(): initialize perl interpreter
759 * We have to call perl_parse to initialize some structures,
760 * there's nothing to actually parse.
761 */
762 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100763perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000765 char *bootargs[] = { "VI", NULL };
766 int argc = 3;
767 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768
Bram Moolenaarc236c162008-07-13 17:41:49 +0000769#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000770 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000771#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 perl_interp = perl_alloc();
773 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000774 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
776 VIM_init();
777#ifdef USE_SFIO
778 sfdisc(PerlIO_stdout(), sfdcnewvim());
779 sfdisc(PerlIO_stderr(), sfdcnewvim());
780 sfsetbuf(PerlIO_stdout(), NULL, 0);
781 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200782#elif defined(PERLIO_LAYERS)
783 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784#endif
785}
786
787/*
Bram Moolenaar20279732020-03-29 20:51:07 +0200788 * Clean up after ourselves.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 */
790 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100791perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792{
793 if (perl_interp)
794 {
795 perl_run(perl_interp);
796 perl_destruct(perl_interp);
797 perl_free(perl_interp);
798 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000799#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100800 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000801#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803}
804
805/*
806 * msg_split(): send a message to the message handling routines
807 * split at '\n' first though.
808 */
809 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100810msg_split(
811 char_u *s,
812 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813{
814 char *next;
815 char *token = (char *)s;
816
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000817 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 {
819 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100820 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 token = next;
822 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000823 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100824 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825}
826
827#ifndef FEAT_EVAL
828/*
829 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
830 * work properly.
831 */
832 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100833eval_to_string(
834 char_u *arg UNUSED,
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100835 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
837 return NULL;
838}
839#endif
840
841/*
842 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000843 * The b_perl_private/w_perl_private part of the SCR structure points to the
844 * SV, so there can only be one such SV for a particular SCR structure. When
845 * the last reference has gone (DESTROY is called),
846 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 * all references are gone, the value of the SV is reset;
848 * any subsequent use of any of those reference will produce
849 * a warning. (see typemap)
850 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000851
852 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100853newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000854{
855 sv_upgrade(rv, SVt_RV);
856 if (ptr->w_perl_private == NULL)
857 {
858 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100859 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000860 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200861 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000862 SvRV(rv) = ptr->w_perl_private;
863 SvROK_on(rv);
864 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865}
866
Bram Moolenaare344bea2005-09-01 20:46:49 +0000867 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100868newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000869{
870 sv_upgrade(rv, SVt_RV);
871 if (ptr->b_perl_private == NULL)
872 {
873 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100874 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000875 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200876 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000877 SvRV(rv) = ptr->b_perl_private;
878 SvROK_on(rv);
879 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
880}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200882#if 0
883SV *__sv_save[1024];
884int __sv_save_ix;
885# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
886#else
887# define D_Save_Sv(sv) NOOP
888#endif
889
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890/*
891 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200892 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 */
894 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100895perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200897 if (wp->w_perl_private && perl_interp != NULL)
898 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200899 SV *sv = (SV*)wp->w_perl_private;
900 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200901 sv_setiv(sv, 0);
902 SvREFCNT_dec(sv);
903 }
904 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905}
906
907 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100908perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200910 if (bp->b_perl_private && perl_interp != NULL)
911 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200912 SV *sv = (SV *)bp->b_perl_private;
913 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200914 sv_setiv(sv, 0);
915 SvREFCNT_dec(sv);
916 }
917 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918}
919
920#ifndef PROTO
921# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
922I32 cur_val(pTHX_ IV iv, SV *sv);
923# else
924I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200925# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926
927/*
928 * Handler for the magic variables $main::curwin and $main::curbuf.
929 * The handler is put into the magic vtbl for these variables.
930 * (This is effectively a C-level equivalent of a tied variable).
931 * There is no "set" function as the variables are read-only.
932 */
933# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
934I32 cur_val(pTHX_ IV iv, SV *sv)
935# else
936I32 cur_val(IV iv, SV *sv)
937# endif
938{
939 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200940
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 if (iv == 0)
942 rv = newWINrv(newSV(0), curwin);
943 else
944 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200945
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200946 if (SvRV(sv) != SvRV(rv))
947 // XXX: This magic variable is a bit confusing...
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100948 // Is currently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200949 sv_setsv(sv, rv);
950
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200951 SvREFCNT_dec(rv);
952
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 return 0;
954}
955#endif /* !PROTO */
956
957struct ufuncs cw_funcs = { cur_val, 0, 0 };
958struct ufuncs cb_funcs = { cur_val, 0, 1 };
959
960/*
961 * VIM_init(): Vim-specific initialisation.
962 * Make the magical main::curwin and main::curbuf variables
963 */
964 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100965VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966{
967 static char cw[] = "main::curwin";
968 static char cb[] = "main::curbuf";
969 SV *sv;
970
971 sv = perl_get_sv(cw, TRUE);
972 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
973 SvREADONLY_on(sv);
974
975 sv = perl_get_sv(cb, TRUE);
976 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
977 SvREADONLY_on(sv);
978
979 /*
980 * Setup the Safe compartment.
981 * It shouldn't be a fatal error if the Safe module is missing.
982 * XXX: Only shares the 'Msg' routine (which has to be called
983 * like 'Msg(...)').
984 */
985 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
986
987}
988
989#ifdef DYNAMIC_PERL
990static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
991#endif
Bram Moolenaar8c62a082019-02-08 14:34:10 +0100992static char *e_perlsandbox = N_("E299: Perl evaluation forbidden in sandbox without the Safe module");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000993
994/*
995 * ":perl"
996 */
997 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100998ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 char *err;
1001 char *script;
1002 STRLEN length;
1003 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001004#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +02001006#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007
1008 script = (char *)script_get(eap, eap->arg);
1009 if (eap->skip)
1010 {
1011 vim_free(script);
1012 return;
1013 }
1014
1015 if (perl_interp == NULL)
1016 {
1017#ifdef DYNAMIC_PERL
1018 if (!perl_enabled(TRUE))
1019 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001020 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 vim_free(script);
1022 return;
1023 }
1024#endif
1025 perl_init();
1026 }
1027
1028 {
1029 dSP;
1030 ENTER;
1031 SAVETMPS;
1032
1033 if (script == NULL)
1034 sv = newSVpv((char *)eap->arg, 0);
1035 else
1036 {
1037 sv = newSVpv(script, 0);
1038 vim_free(script);
1039 }
1040
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001041 if (sandbox || secure)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001042 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001043 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001044# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001045 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001046 emsg(_(e_perlsandbox));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001048# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 {
1050 PUSHMARK(SP);
1051 XPUSHs(safe);
1052 XPUSHs(sv);
1053 PUTBACK;
1054 perl_call_method("reval", G_DISCARD);
1055 }
1056 }
1057 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1059
1060 SvREFCNT_dec(sv);
1061
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001062 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063
1064 FREETMPS;
1065 LEAVE;
1066
1067 if (!length)
1068 return;
1069
1070 msg_split((char_u *)err, highlight_attr[HLF_E]);
1071 return;
1072 }
1073}
1074
1075 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001076replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077{
1078 char *str;
1079
1080 if (SvOK(GvSV(PL_defgv)))
1081 {
1082 str = SvPV(GvSV(PL_defgv), PL_na);
1083 ml_replace(*line, (char_u *)str, 1);
1084 changed_bytes(*line, 0);
1085 }
1086 else
1087 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001088 ml_delete(*line);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 deleted_lines_mark(*line, 1L);
1090 --(*end);
1091 --(*line);
1092 }
1093 return OK;
1094}
1095
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001096static struct ref_map_S {
1097 void *vim_ref;
1098 SV *perl_ref;
1099 struct ref_map_S *next;
1100} *ref_map = NULL;
1101
1102 static void
1103ref_map_free(void)
1104{
1105 struct ref_map_S *tofree;
1106 struct ref_map_S *refs = ref_map;
1107
1108 while (refs) {
1109 tofree = refs;
1110 refs = refs->next;
1111 vim_free(tofree);
1112 }
1113 ref_map = NULL;
1114}
1115
1116 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001117ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001118{
1119 struct ref_map_S *refs = ref_map;
1120 int count = 350;
1121
1122 while (refs) {
1123 if (refs->perl_ref == sv)
1124 break;
1125 refs = refs->next;
1126 count--;
1127 }
1128
1129 if (!refs && count > 0) {
1130 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1131 if (!refs)
1132 return NULL;
1133 refs->perl_ref = sv;
1134 refs->vim_ref = NULL;
1135 refs->next = ref_map;
1136 ref_map = refs;
1137 }
1138
1139 return refs;
1140}
1141
1142 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001143perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001144{
1145 if (SvROK(sv))
1146 sv = SvRV(sv);
1147
1148 switch (SvTYPE(sv)) {
1149 case SVt_NULL:
1150 break;
1151 case SVt_NV: /* float */
1152#ifdef FEAT_FLOAT
1153 rettv->v_type = VAR_FLOAT;
1154 rettv->vval.v_float = SvNV(sv);
1155 break;
1156#endif
1157 case SVt_IV: /* integer */
1158 if (!SvROK(sv)) { /* references should be string */
1159 rettv->vval.v_number = SvIV(sv);
1160 break;
1161 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001162 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001163 case SVt_PV: /* string */
1164 {
1165 size_t len = 0;
1166 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001167 char_u *str_to = (char_u*)alloc(
1168 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001169
1170 if (str_to) {
1171 str_to[len] = '\0';
1172
1173 while (len--) {
1174 if (str_from[len] == '\0')
1175 str_to[len] = '\n';
1176 else
1177 str_to[len] = str_from[len];
1178 }
1179 }
1180
1181 rettv->v_type = VAR_STRING;
1182 rettv->vval.v_string = str_to;
1183 break;
1184 }
1185 case SVt_PVAV: /* list */
1186 {
1187 SSize_t size;
1188 listitem_T * item;
1189 SV ** item2;
1190 list_T * list;
1191 struct ref_map_S * refs;
1192
1193 if ((refs = ref_map_find_SV(sv)) == NULL)
1194 return FAIL;
1195
1196 if (refs->vim_ref)
1197 list = (list_T *) refs->vim_ref;
1198 else
1199 {
1200 if ((list = list_alloc()) == NULL)
1201 return FAIL;
1202 refs->vim_ref = list;
1203
1204 for (size = av_len((AV*)sv); size >= 0; size--)
1205 {
1206 if ((item = listitem_alloc()) == NULL)
1207 break;
1208
1209 item->li_tv.v_type = VAR_NUMBER;
1210 item->li_tv.v_lock = 0;
1211 item->li_tv.vval.v_number = 0;
1212 list_insert(list, item, list->lv_first);
1213
1214 item2 = av_fetch((AV *)sv, size, 0);
1215
1216 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001217 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001218 break;
1219 }
1220 }
1221
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001222 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001223 break;
1224 }
1225 case SVt_PVHV: /* dictionary */
1226 {
1227 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001228 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001229 char * key;
1230 dictitem_T * item;
1231 SV * item2;
1232 dict_T * dict;
1233 struct ref_map_S * refs;
1234
1235 if ((refs = ref_map_find_SV(sv)) == NULL)
1236 return FAIL;
1237
1238 if (refs->vim_ref)
1239 dict = (dict_T *) refs->vim_ref;
1240 else
1241 {
1242
1243 if ((dict = dict_alloc()) == NULL)
1244 return FAIL;
1245 refs->vim_ref = dict;
1246
1247 hv_iterinit((HV *)sv);
1248
1249 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1250 {
1251 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001252 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001253
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001254 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001255 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001256 break;
1257 }
1258
1259 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1260 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001261 item->di_tv.v_type = VAR_NUMBER;
1262 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001263
1264 if (dict_add(dict, item) == FAIL) {
1265 dictitem_free(item);
1266 break;
1267 }
1268 item2 = hv_iterval((HV *)sv, entry);
1269 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1270 break;
1271 }
1272 }
1273
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001274 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001275 break;
1276 }
1277 default: /* not convertible */
1278 {
1279 char *val = SvPV_nolen(sv);
1280 rettv->v_type = VAR_STRING;
1281 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1282 break;
1283 }
1284 }
1285 return OK;
1286}
1287
1288/*
1289 * "perleval()"
1290 */
1291 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001292do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001293{
1294 char *err = NULL;
1295 STRLEN err_len = 0;
1296 SV *sv = NULL;
1297#ifdef HAVE_SANDBOX
1298 SV *safe;
1299#endif
1300
1301 if (perl_interp == NULL)
1302 {
1303#ifdef DYNAMIC_PERL
1304 if (!perl_enabled(TRUE))
1305 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001306 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001307 return;
1308 }
1309#endif
1310 perl_init();
1311 }
1312
1313 {
1314 dSP;
1315 ENTER;
1316 SAVETMPS;
1317
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001318 if (sandbox || secure)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001319 {
1320 safe = get_sv("VIM::safe", FALSE);
1321# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1322 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar8c62a082019-02-08 14:34:10 +01001323 emsg(_(e_perlsandbox));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001324 else
1325# endif
1326 {
1327 sv = newSVpv((char *)str, 0);
1328 PUSHMARK(SP);
1329 XPUSHs(safe);
1330 XPUSHs(sv);
1331 PUTBACK;
1332 call_method("reval", G_SCALAR);
1333 SPAGAIN;
1334 SvREFCNT_dec(sv);
1335 sv = POPs;
1336 }
1337 }
1338 else
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001339 sv = eval_pv((char *)str, 0);
1340
1341 if (sv) {
1342 perl_to_vim(sv, rettv);
1343 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001344 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001345 }
1346 PUTBACK;
1347 FREETMPS;
1348 LEAVE;
1349 }
1350 if (err_len)
1351 msg_split((char_u *)err, highlight_attr[HLF_E]);
1352}
1353
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354/*
1355 * ":perldo".
1356 */
1357 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001358ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359{
1360 STRLEN length;
1361 SV *sv;
1362 char *str;
1363 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001364 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001366 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001367 return;
1368
1369 if (perl_interp == NULL)
1370 {
1371#ifdef DYNAMIC_PERL
1372 if (!perl_enabled(TRUE))
1373 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001374 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 return;
1376 }
1377#endif
1378 perl_init();
1379 }
1380 {
1381 dSP;
1382 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001383 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1384 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 sv_catpvn(sv, (char *)eap->arg, length);
1386 sv_catpvn(sv, "}", 1);
1387 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1388 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001389 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 if (length)
1391 goto err;
1392
1393 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1394 return;
1395
1396 ENTER;
1397 SAVETMPS;
1398 for (i = eap->line1; i <= eap->line2; i++)
1399 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001400 /* Check the line number, the command my have deleted lines. */
1401 if (i > curbuf->b_ml.ml_line_count)
1402 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001403 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 PUSHMARK(sp);
1405 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001406 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001407 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 break;
1409 SPAGAIN;
1410 if (SvTRUEx(POPs))
1411 {
1412 if (replace_line(&i, &eap->line2) != OK)
1413 {
1414 PUTBACK;
1415 break;
1416 }
1417 }
1418 PUTBACK;
1419 }
1420 FREETMPS;
1421 LEAVE;
1422 check_cursor();
1423 update_screen(NOT_VALID);
1424 if (!length)
1425 return;
1426
1427err:
1428 msg_split((char_u *)str, highlight_attr[HLF_E]);
1429 return;
1430 }
1431}
1432
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001433#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1434typedef struct {
1435 struct _PerlIO base;
1436 int attr;
1437} PerlIOVim;
1438
1439 static IV
1440PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1441 SV *arg, PerlIO_funcs *tab)
1442{
1443 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1444 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001445 if (arg && SvPOK(arg))
1446 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001447 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1448}
1449
1450 static SSize_t
1451PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1452{
1453 char_u *str;
1454 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1455
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001456 str = vim_strnsave((char_u *)vbuf, count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001457 if (str == NULL)
1458 return 0;
1459 msg_split((char_u *)str, s->attr);
1460 vim_free(str);
1461
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001462 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001463}
1464
1465static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1466 sizeof(PerlIO_funcs),
1467 "Vim",
1468 sizeof(PerlIOVim),
1469 PERLIO_K_DUMMY, /* flags */
1470 PerlIOVim_pushed,
1471 NULL, /* popped */
1472 NULL, /* open */
1473 NULL, /* binmode */
1474 NULL, /* arg */
1475 NULL, /* fileno */
1476 NULL, /* dup */
1477 NULL, /* read */
1478 NULL, /* unread */
1479 PerlIOVim_write,
1480 NULL, /* seek */
1481 NULL, /* tell */
1482 NULL, /* close */
1483 NULL, /* flush */
1484 NULL, /* fill */
1485 NULL, /* eof */
1486 NULL, /* error */
1487 NULL, /* clearerr */
1488 NULL, /* setlinebuf */
1489 NULL, /* get_base */
1490 NULL, /* get_bufsiz */
1491 NULL, /* get_ptr */
1492 NULL, /* get_cnt */
1493 NULL /* set_ptrcnt */
1494};
1495
1496/* Use Vim routine for print operator */
1497 static void
1498vim_IOLayer_init(void)
1499{
1500 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1501 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1502 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1503}
1504#endif /* PERLIO_LAYERS && !USE_SFIO */
1505
Bram Moolenaar071d4272004-06-13 20:20:40 +00001506XS(boot_VIM);
1507
1508 static void
1509xs_init(pTHX)
1510{
1511 char *file = __FILE__;
1512
1513 /* DynaLoader is a special case */
1514 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1515 newXS("VIM::bootstrap", boot_VIM, file);
1516}
1517
1518typedef win_T * VIWIN;
1519typedef buf_T * VIBUF;
1520
1521MODULE = VIM PACKAGE = VIM
1522
1523void
1524Msg(text, hl=NULL)
1525 char *text;
1526 char *hl;
1527
1528 PREINIT:
1529 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530
1531 PPCODE:
1532 if (text != NULL)
1533 {
1534 attr = 0;
1535 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001536 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 msg_split((char_u *)text, attr);
1538 }
1539
1540void
1541SetOption(line)
1542 char *line;
1543
1544 PPCODE:
1545 if (line != NULL)
1546 do_set((char_u *)line, 0);
1547 update_screen(NOT_VALID);
1548
1549void
1550DoCommand(line)
1551 char *line;
1552
1553 PPCODE:
1554 if (line != NULL)
1555 do_cmdline_cmd((char_u *)line);
1556
1557void
1558Eval(str)
1559 char *str;
1560
1561 PREINIT:
1562 char_u *value;
1563 PPCODE:
Bram Moolenaarb171fb12020-06-24 20:34:03 +02001564 value = eval_to_string((char_u *)str, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 if (value == NULL)
1566 {
1567 XPUSHs(sv_2mortal(newSViv(0)));
1568 XPUSHs(sv_2mortal(newSVpv("", 0)));
1569 }
1570 else
1571 {
1572 XPUSHs(sv_2mortal(newSViv(1)));
1573 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1574 vim_free(value);
1575 }
1576
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001577SV*
1578Blob(SV* sv)
1579 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001580 STRLEN len;
1581 char *s;
1582 unsigned i;
1583 char buf[3];
1584 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001585
1586 CODE:
1587 s = SvPVbyte(sv, len);
1588 newsv = newSVpv("0z", 2);
1589 for (i = 0; i < len; i++)
1590 {
Bram Moolenaar2472ae82019-02-23 15:04:17 +01001591 sprintf(buf, "%02X", (unsigned char)(s[i]));
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001592 sv_catpvn(newsv, buf, 2);
1593 }
1594 RETVAL = newsv;
1595 OUTPUT:
1596 RETVAL
1597
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598void
1599Buffers(...)
1600
1601 PREINIT:
1602 buf_T *vimbuf;
1603 int i, b;
1604
1605 PPCODE:
1606 if (items == 0)
1607 {
1608 if (GIMME == G_SCALAR)
1609 {
1610 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001611 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 ++i;
1613
1614 XPUSHs(sv_2mortal(newSViv(i)));
1615 }
1616 else
1617 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001618 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001619 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 }
1621 }
1622 else
1623 {
1624 for (i = 0; i < items; i++)
1625 {
1626 SV *sv = ST(i);
1627 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001628 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 else
1630 {
1631 char_u *pat;
1632 STRLEN len;
1633
1634 pat = (char_u *)SvPV(sv, len);
1635 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001636 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 --emsg_off;
1638 }
1639
1640 if (b >= 0)
1641 {
1642 vimbuf = buflist_findnr(b);
1643 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001644 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 }
1646 }
1647 }
1648
1649void
1650Windows(...)
1651
1652 PREINIT:
1653 win_T *vimwin;
1654 int i, w;
1655
1656 PPCODE:
1657 if (items == 0)
1658 {
1659 if (GIMME == G_SCALAR)
1660 XPUSHs(sv_2mortal(newSViv(win_count())));
1661 else
1662 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001663 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001664 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 }
1666 }
1667 else
1668 {
1669 for (i = 0; i < items; i++)
1670 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001671 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 vimwin = win_find_nr(w);
1673 if (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
1678MODULE = VIM PACKAGE = VIWIN
1679
1680void
1681DESTROY(win)
1682 VIWIN win
1683
1684 CODE:
1685 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001686 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687
1688SV *
1689Buffer(win)
1690 VIWIN win
1691
1692 CODE:
1693 if (!win_valid(win))
1694 win = curwin;
1695 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1696 OUTPUT:
1697 RETVAL
1698
1699void
1700SetHeight(win, height)
1701 VIWIN win
1702 int height;
1703
1704 PREINIT:
1705 win_T *savewin;
1706
1707 PPCODE:
1708 if (!win_valid(win))
1709 win = curwin;
1710 savewin = curwin;
1711 curwin = win;
1712 win_setheight(height);
1713 curwin = savewin;
1714
1715void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001716Cursor(win, ...)
1717 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001718
1719 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001720 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 {
1722 EXTEND(sp, 2);
1723 if (!win_valid(win))
1724 win = curwin;
1725 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1726 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1727 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001728 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 {
1730 int lnum, col;
1731
1732 if (!win_valid(win))
1733 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001734 lnum = (int) SvIV(ST(1));
1735 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736 win->w_cursor.lnum = lnum;
1737 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001738 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 check_cursor(); /* put cursor on an existing line */
1740 update_screen(NOT_VALID);
1741 }
1742
1743MODULE = VIM PACKAGE = VIBUF
1744
1745void
1746DESTROY(vimbuf)
1747 VIBUF vimbuf;
1748
1749 CODE:
1750 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001751 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752
1753void
1754Name(vimbuf)
1755 VIBUF vimbuf;
1756
1757 PPCODE:
1758 if (!buf_valid(vimbuf))
1759 vimbuf = curbuf;
1760 /* No file name returns an empty string */
1761 if (vimbuf->b_fname == NULL)
1762 XPUSHs(sv_2mortal(newSVpv("", 0)));
1763 else
1764 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1765
1766void
1767Number(vimbuf)
1768 VIBUF vimbuf;
1769
1770 PPCODE:
1771 if (!buf_valid(vimbuf))
1772 vimbuf = curbuf;
1773 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1774
1775void
1776Count(vimbuf)
1777 VIBUF vimbuf;
1778
1779 PPCODE:
1780 if (!buf_valid(vimbuf))
1781 vimbuf = curbuf;
1782 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1783
1784void
1785Get(vimbuf, ...)
1786 VIBUF vimbuf;
1787
1788 PREINIT:
1789 char_u *line;
1790 int i;
1791 long lnum;
1792 PPCODE:
1793 if (buf_valid(vimbuf))
1794 {
1795 for (i = 1; i < items; i++)
1796 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001797 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001798 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1799 {
1800 line = ml_get_buf(vimbuf, lnum, FALSE);
1801 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1802 }
1803 }
1804 }
1805
1806void
1807Set(vimbuf, ...)
1808 VIBUF vimbuf;
1809
1810 PREINIT:
1811 int i;
1812 long lnum;
1813 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 PPCODE:
1815 if (buf_valid(vimbuf))
1816 {
1817 if (items < 3)
1818 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1819
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001820 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 for(i = 2; i < items; i++, lnum++)
1822 {
1823 line = SvPV(ST(i),PL_na);
1824 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1825 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001826 aco_save_T aco;
1827
1828 /* set curwin/curbuf for "vimbuf" and save some things */
1829 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001830
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 if (u_savesub(lnum) == OK)
1832 {
1833 ml_replace(lnum, (char_u *)line, TRUE);
1834 changed_bytes(lnum, 0);
1835 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001836
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001837 /* restore curwin/curbuf and a few other things */
1838 aucmd_restbuf(&aco);
1839 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 }
1841 }
1842 }
1843
1844void
1845Delete(vimbuf, ...)
1846 VIBUF vimbuf;
1847
1848 PREINIT:
1849 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 PPCODE:
1851 if (buf_valid(vimbuf))
1852 {
1853 if (items == 2)
1854 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001855 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 count = 1;
1857 }
1858 else if (items == 3)
1859 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001860 lnum = (long) SvIV(ST(1));
1861 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001862 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001864 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 {
1866 lnum -= count;
1867 count = -count;
1868 }
1869 }
1870 if (items >= 2)
1871 {
1872 for (i = 0; i < count; i++)
1873 {
1874 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1875 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001876 aco_save_T aco;
1877
1878 /* set curwin/curbuf for "vimbuf" and save some things */
1879 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001880
Bram Moolenaar071d4272004-06-13 20:20:40 +00001881 if (u_savedel(lnum, 1) == OK)
1882 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02001883 ml_delete(lnum);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001884 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001887
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001888 /* restore curwin/curbuf and a few other things */
1889 aucmd_restbuf(&aco);
1890 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001891
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 update_curbuf(VALID);
1893 }
1894 }
1895 }
1896 }
1897
1898void
1899Append(vimbuf, ...)
1900 VIBUF vimbuf;
1901
1902 PREINIT:
1903 int i;
1904 long lnum;
1905 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 PPCODE:
1907 if (buf_valid(vimbuf))
1908 {
1909 if (items < 3)
1910 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1911
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001912 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 for (i = 2; i < items; i++, lnum++)
1914 {
1915 line = SvPV(ST(i),PL_na);
1916 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1917 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001918 aco_save_T aco;
1919
1920 /* set curwin/curbuf for "vimbuf" and save some things */
1921 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001922
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 if (u_inssub(lnum + 1) == OK)
1924 {
1925 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1926 appended_lines_mark(lnum, 1L);
1927 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001928
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001929 /* restore curwin/curbuf and a few other things */
1930 aucmd_restbuf(&aco);
1931 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001932
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 update_curbuf(VALID);
1934 }
1935 }
1936 }
1937
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001938#ifdef __GNUC__
1939# pragma GCC diagnostic pop
1940#endif