blob: 203bb6a6795b39f23c35a2864f4844ce9f2be23c [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
50#endif
51
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010052#ifdef __GNUC__
53# pragma GCC diagnostic push
54# pragma GCC diagnostic ignored "-Wunused-variable"
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010055#endif
56
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020057#include <EXTERN.h>
58#include <perl.h>
59#include <XSUB.h>
Bram Moolenaar6244a0f2016-04-14 14:09:25 +020060#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
61# include <perliol.h>
62#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000063
Bram Moolenaarcf190c62016-06-02 11:54:06 +020064/* Workaround for perl < 5.8.7 */
65#ifndef PERLIO_FUNCS_DECL
66# ifdef PERLIO_FUNCS_CONST
67# define PERLIO_FUNCS_DECL(funcs) const PerlIO_funcs funcs
68# define PERLIO_FUNCS_CAST(funcs) (PerlIO_funcs*)(funcs)
69# else
70# define PERLIO_FUNCS_DECL(funcs) PerlIO_funcs funcs
71# define PERLIO_FUNCS_CAST(funcs) (funcs)
72# endif
73#endif
Bram Moolenaarc4bc0e62016-06-02 13:54:49 +020074#ifndef SvREFCNT_inc_void_NN
75# define SvREFCNT_inc_void_NN SvREFCNT_inc
76#endif
Bram Moolenaarcf190c62016-06-02 11:54:06 +020077
Bram Moolenaar071d4272004-06-13 20:20:40 +000078/*
79 * Work around clashes between Perl and Vim namespace. proto.h doesn't
80 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
81 * we need the CV typedef. proto.h can't be moved to after including
82 * if_perl.h, because we get all sorts of name clashes then.
83 */
84#ifndef PROTO
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020085# ifndef __MINGW32__
86# include "proto/if_perl.pro"
87# include "proto/if_perlsfio.pro"
88# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
Bram Moolenaar1f402802018-09-21 14:01:27 +020091// Perl compatibility stuff. This should ensure compatibility with older
92// versions of Perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +000093#ifndef PERL_VERSION
Bram Moolenaareeb50ab2016-06-26 17:19:46 +020094# include <patchlevel.h>
95# define PERL_REVISION 5
96# define PERL_VERSION PATCHLEVEL
97# define PERL_SUBVERSION SUBVERSION
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#endif
99
Bram Moolenaar1f402802018-09-21 14:01:27 +0200100
101// Work around for ActivePerl 5.20.3+: Avoid generating (g)vim.lib.
102#if defined(ACTIVEPERL_VERSION) && (ACTIVEPERL_VERSION >= 2003) \
103 && defined(WIN32) && defined(USE_DYNAMIC_LOADING)
104# undef XS_EXTERNAL
105# define XS_EXTERNAL(name) XSPROTO(name)
106#endif
107
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000108/*
109 * Quoting Jan Dubois of Active State:
110 * ActivePerl build 822 still identifies itself as 5.8.8 but already
111 * contains many of the changes from the upcoming Perl 5.8.9 release.
112 *
113 * The changes include addition of two symbols (Perl_sv_2iv_flags,
114 * Perl_newXS_flags) not present in earlier releases.
115 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000116 * Jan Dubois suggested the following guarding scheme.
117 *
118 * Active State defined ACTIVEPERL_VERSION as a string in versions before
119 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000120 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +0000121#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
122# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
123# define PERL589_OR_LATER
124# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000125#endif
126#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
127# define PERL589_OR_LATER
128#endif
129
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100130#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
131 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
132# define PERL5101_OR_LATER
133#endif
134
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135#ifndef pTHX
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200136# define pTHX void
137# define pTHX_
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138#endif
139
140#ifndef EXTERN_C
141# define EXTERN_C
142#endif
143
144/* Compatibility hacks over */
145
146static PerlInterpreter *perl_interp = NULL;
Bram Moolenaard99df422016-01-29 23:20:40 +0100147static void xs_init(pTHX);
148static void VIM_init(void);
149EXTERN_C void boot_DynaLoader(pTHX_ CV*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150
151/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200152 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 */
154#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200155
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200156# ifndef DYNAMIC_PERL /* just generating prototypes */
157# ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200158typedef int HANDLE;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200159# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200160typedef int XSINIT_t;
161typedef int XSUBADDR_t;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200162# endif
163# ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200164typedef int perl_key;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200165# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200166
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200167# ifndef WIN3264
168# include <dlfcn.h>
169# define HANDLE void*
170# define PERL_PROC void*
171# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
172# define symbol_from_dll dlsym
173# define close_dll dlclose
174# else
175# define PERL_PROC FARPROC
176# define load_dll vimLoadLib
177# define symbol_from_dll GetProcAddress
178# define close_dll FreeLibrary
179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180/*
181 * Wrapper defines
182 */
183# define perl_alloc dll_perl_alloc
184# define perl_construct dll_perl_construct
185# define perl_parse dll_perl_parse
186# define perl_run dll_perl_run
187# define perl_destruct dll_perl_destruct
188# define perl_free dll_perl_free
189# define Perl_get_context dll_Perl_get_context
190# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100191# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100192# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
193# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194# ifndef PROTO
195# define Perl_croak_nocontext dll_Perl_croak_nocontext
196# define Perl_call_argv dll_Perl_call_argv
197# define Perl_call_pv dll_Perl_call_pv
198# define Perl_eval_sv dll_Perl_eval_sv
199# define Perl_get_sv dll_Perl_get_sv
200# define Perl_eval_pv dll_Perl_eval_pv
201# define Perl_call_method dll_Perl_call_method
202# endif
203# define Perl_dowantarray dll_Perl_dowantarray
204# define Perl_free_tmps dll_Perl_free_tmps
205# define Perl_gv_stashpv dll_Perl_gv_stashpv
206# define Perl_markstack_grow dll_Perl_markstack_grow
207# define Perl_mg_find dll_Perl_mg_find
Bram Moolenaar578333b2018-07-22 07:31:09 +0200208# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
209# define Perl_mg_get dll_Perl_mg_get
210# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211# define Perl_newXS dll_Perl_newXS
212# define Perl_newSV dll_Perl_newSV
213# define Perl_newSViv dll_Perl_newSViv
214# define Perl_newSVpv dll_Perl_newSVpv
215# define Perl_pop_scope dll_Perl_pop_scope
216# define Perl_push_scope dll_Perl_push_scope
217# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200218# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
219# define Perl_save_strlen dll_Perl_save_strlen
220# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# define Perl_stack_grow dll_Perl_stack_grow
222# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200223# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200224# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
225# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
226# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
227# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200228# else
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200229# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200230# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231# define Perl_sv_2iv dll_Perl_sv_2iv
232# define Perl_sv_2mortal dll_Perl_sv_2mortal
233# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
234# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
235# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
236# else
237# define Perl_sv_2pv dll_Perl_sv_2pv
238# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100239# define Perl_sv_2pvbyte dll_Perl_sv_2pvbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240# define Perl_sv_bless dll_Perl_sv_bless
241# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
242# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
243# else
244# define Perl_sv_catpvn dll_Perl_sv_catpvn
245# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200246# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000247# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
248# define Perl_newXS_flags dll_Perl_newXS_flags
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200249# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000251# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
252# define Perl_sv_free2 dll_Perl_sv_free2
253# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254# define Perl_sv_isa dll_Perl_sv_isa
255# define Perl_sv_magic dll_Perl_sv_magic
256# define Perl_sv_setiv dll_Perl_sv_setiv
257# define Perl_sv_setpv dll_Perl_sv_setpv
258# define Perl_sv_setpvn dll_Perl_sv_setpvn
259# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
260# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
261# else
262# define Perl_sv_setsv dll_Perl_sv_setsv
263# endif
264# define Perl_sv_upgrade dll_Perl_sv_upgrade
265# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
266# define Perl_Top_ptr dll_Perl_Top_ptr
267# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
268# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
269# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
270# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
271# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
272# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
273# define Perl_TSv_ptr dll_Perl_TSv_ptr
274# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
275# define Perl_Tna_ptr dll_Perl_Tna_ptr
276# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
277# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
278# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
279# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200280# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000282# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000283# define Perl_sys_term dll_Perl_sys_term
284# define Perl_ISv_ptr dll_Perl_ISv_ptr
285# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
286# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
287# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
288# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
289# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
290# define Perl_Ina_ptr dll_Perl_Ina_ptr
291# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
292# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
293# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
294# define Perl_Iop_ptr dll_Perl_Iop_ptr
295# define Perl_call_list dll_Perl_call_list
296# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
297# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200298# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
299# define Perl_xs_handshake dll_Perl_xs_handshake
300# define Perl_xs_boot_epilog dll_Perl_xs_boot_epilog
301# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200302# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100303# ifdef USE_ITHREADS
304# define PL_thr_key *dll_PL_thr_key
305# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200306# endif
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100307# define Perl_hv_iternext_flags dll_Perl_hv_iternext_flags
308# define Perl_hv_iterinit dll_Perl_hv_iterinit
309# define Perl_hv_iterkey dll_Perl_hv_iterkey
310# define Perl_hv_iterval dll_Perl_hv_iterval
311# define Perl_av_fetch dll_Perl_av_fetch
312# define Perl_av_len dll_Perl_av_len
313# define Perl_sv_2nv_flags dll_Perl_sv_2nv_flags
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200314# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
315# define PerlIOBase_pushed dll_PerlIOBase_pushed
316# define PerlIO_define_layer dll_PerlIO_define_layer
317# endif
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200318# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
319# define Perl_savetmps dll_Perl_savetmps
320# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000321
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322/*
323 * Declare HANDLE for perl.dll and function pointers.
324 */
325static HANDLE hPerlLib = NULL;
326
327static PerlInterpreter* (*perl_alloc)();
328static void (*perl_construct)(PerlInterpreter*);
329static void (*perl_destruct)(PerlInterpreter*);
330static void (*perl_free)(PerlInterpreter*);
331static int (*perl_run)(PerlInterpreter*);
332static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
333static void* (*Perl_get_context)(void);
Bram Moolenaar864733a2016-04-02 14:18:01 +0200334static void (*Perl_croak)(pTHX_ const char*, ...) __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200335# ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100336/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200337# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar864733a2016-04-02 14:18:01 +0200338static void (*Perl_croak_xs_usage)(const CV *const, const char *const params)
339 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200340# else
Bram Moolenaar864733a2016-04-02 14:18:01 +0200341static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params)
342 __attribute__noreturn__;
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200343# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100344# endif
Bram Moolenaar864733a2016-04-02 14:18:01 +0200345static void (*Perl_croak_nocontext)(const char*, ...) __attribute__noreturn__;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346static I32 (*Perl_dowantarray)(pTHX);
347static void (*Perl_free_tmps)(pTHX);
348static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200349# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200350static I32* (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200351# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352static void (*Perl_markstack_grow)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200353# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
Bram Moolenaar578333b2018-07-22 07:31:09 +0200355# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
356static int (*Perl_mg_get)(pTHX_ SV*);
357# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
359static SV* (*Perl_newSV)(pTHX_ STRLEN);
360static SV* (*Perl_newSViv)(pTHX_ IV);
361static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
362static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
363static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
364static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
365static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
366static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
367static SV* (*Perl_call_method)(pTHX_ const char*, I32);
368static void (*Perl_pop_scope)(pTHX);
369static void (*Perl_push_scope)(pTHX);
370static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200371# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200372static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200373# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
375static SV** (*Perl_set_context)(void*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200376# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200377static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200378# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200379static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200380# endif
381# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200383# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384static IV (*Perl_sv_2iv)(pTHX_ SV*);
385static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200386# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
388static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200389# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200391# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100392static char* (*Perl_sv_2pvbyte)(pTHX_ SV*, STRLEN*);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200394# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200396# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200398# endif
399# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000400static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
401static 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 +0200402# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403static void (*Perl_sv_free)(pTHX_ SV*);
404static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
405static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
406static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
407static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
408static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200409# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200411# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200413# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200415# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
417static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
418static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
419static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
420static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
421static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
422static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
423static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
424static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
425static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
426static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100427# else
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200428/* Perl-5.18 has a different Perl_sv_free2 signature. */
429# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
430static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
431# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000432static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200433# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000434static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000435static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200436static void (*Perl_call_list)(pTHX_ I32, AV*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200437# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
438# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000439static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
440static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
441static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
442static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
443static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
444static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
445static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
446static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
447static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
448static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
449static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000450static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
451static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200452# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200453# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200454# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200455static I32 (*Perl_xs_handshake)(const U32, void *, const char *, ...);
456static void (*Perl_xs_boot_epilog)(pTHX_ const U32);
Bram Moolenaard8619992014-03-12 17:08:05 +0100457# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200458
459# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
460# ifdef USE_ITHREADS
461static perl_key* dll_PL_thr_key;
462# endif
463# else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200464static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
465static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
466static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200467static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200468# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200469static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100470static HE * (*Perl_hv_iternext_flags)(pTHX_ HV *, I32);
471static I32 (*Perl_hv_iterinit)(pTHX_ HV *);
472static char * (*Perl_hv_iterkey)(pTHX_ HE *, I32 *);
473static SV * (*Perl_hv_iterval)(pTHX_ HV *, HE *);
474static SV** (*Perl_av_fetch)(pTHX_ AV *, SSize_t, I32);
475static SSize_t (*Perl_av_len)(pTHX_ AV *);
476static NV (*Perl_sv_2nv_flags)(pTHX_ SV *const, const I32);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200477# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200478static IV (*PerlIOBase_pushed)(pTHX_ PerlIO *, const char *, SV *, PerlIO_funcs *);
479static void (*PerlIO_define_layer)(pTHX_ PerlIO_funcs *);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200480# endif
481# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200482static void (*Perl_savetmps)(pTHX);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200483# endif
Bram Moolenaare06c1882010-07-21 22:05:20 +0200484
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485/*
486 * Table of name to function pointer of perl.
487 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488static struct {
489 char* name;
490 PERL_PROC* ptr;
491} perl_funcname_table[] = {
492 {"perl_alloc", (PERL_PROC*)&perl_alloc},
493 {"perl_construct", (PERL_PROC*)&perl_construct},
494 {"perl_destruct", (PERL_PROC*)&perl_destruct},
495 {"perl_free", (PERL_PROC*)&perl_free},
496 {"perl_run", (PERL_PROC*)&perl_run},
497 {"perl_parse", (PERL_PROC*)&perl_parse},
498 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
499 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200500# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100501 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200502# endif
503# ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200505# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
507 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
508 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
509 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
510 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
Bram Moolenaar578333b2018-07-22 07:31:09 +0200511# if (PERL_REVISION == 5) && (PERL_VERSION >= 28)
512 {"Perl_mg_get", (PERL_PROC*)&Perl_mg_get},
513# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
515 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
516 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
517 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
518 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
519 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
520 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
521 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
522 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
523 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
524 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
525 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
526 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200527# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200528 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200529# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
531 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200532# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200533 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200534# if (PERL_REVISION == 5) && (PERL_VERSION < 22)
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200535 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200536# endif
537# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200539# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
541 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200542# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
544 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200545# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200547# endif
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100548 {"Perl_sv_2pvbyte", (PERL_PROC*)&Perl_sv_2pvbyte},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200549# ifdef PERL589_OR_LATER
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000550 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
551 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200554# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200556# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200558# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
560 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
561 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
562 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
563 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
564 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200565# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200567# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200569# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200571# if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
573 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
574 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
575 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
576 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
577 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
578 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
579 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
580 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
581 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
582 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200583# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000584 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000585 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000586 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200587 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200588# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
589# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000590 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000591 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200592 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
593 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000594 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
595 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200596 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000597 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
598 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200599 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
600 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000601 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
602 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200603# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200604# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200605# if (PERL_REVISION == 5) && (PERL_VERSION >= 22)
Bram Moolenaar367fbf12015-06-25 16:13:46 +0200606 {"Perl_xs_handshake", (PERL_PROC*)&Perl_xs_handshake},
607 {"Perl_xs_boot_epilog", (PERL_PROC*)&Perl_xs_boot_epilog},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200608# endif
609# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100610# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200611 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100612# endif
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200613# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
615 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
616 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200617 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200618# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200619 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100620 {"Perl_hv_iternext_flags", (PERL_PROC*)&Perl_hv_iternext_flags},
621 {"Perl_hv_iterinit", (PERL_PROC*)&Perl_hv_iterinit},
622 {"Perl_hv_iterkey", (PERL_PROC*)&Perl_hv_iterkey},
623 {"Perl_hv_iterval", (PERL_PROC*)&Perl_hv_iterval},
624 {"Perl_av_fetch", (PERL_PROC*)&Perl_av_fetch},
625 {"Perl_av_len", (PERL_PROC*)&Perl_av_len},
626 {"Perl_sv_2nv_flags", (PERL_PROC*)&Perl_sv_2nv_flags},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200627# if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200628 {"PerlIOBase_pushed", (PERL_PROC*)&PerlIOBase_pushed},
629 {"PerlIO_define_layer", (PERL_PROC*)&PerlIO_define_layer},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200630# endif
631# if (PERL_REVISION == 5) && (PERL_VERSION >= 24)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200632 {"Perl_savetmps", (PERL_PROC*)&Perl_savetmps},
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 {"", NULL},
635};
636
Bram Moolenaar6b107212013-12-11 15:06:40 +0100637/* Work around for perl-5.18.
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200638 * For now, only the definitions of S_SvREFCNT_dec are needed in
639 * "perl\lib\CORE\inline.h". */
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200640# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
Bram Moolenaar6727bf82016-05-26 22:10:00 +0200641static void
642S_SvREFCNT_dec(pTHX_ SV *sv)
643{
644 if (LIKELY(sv != NULL)) {
645 U32 rc = SvREFCNT(sv);
646 if (LIKELY(rc > 1))
647 SvREFCNT(sv) = rc - 1;
648 else
649 Perl_sv_free2(aTHX_ sv, rc);
650 }
651}
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200652# endif
Bram Moolenaar6b107212013-12-11 15:06:40 +0100653
Bram Moolenaarfa4161c2017-06-10 15:46:23 +0200654/* perl-5.26 also needs S_TOPMARK and S_POPMARK. */
655# if (PERL_REVISION == 5) && (PERL_VERSION >= 26)
656PERL_STATIC_INLINE I32
657S_TOPMARK(pTHX)
658{
659 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
660 "MARK top %p %" IVdf "\n",
661 PL_markstack_ptr,
662 (IV)*PL_markstack_ptr)));
663 return *PL_markstack_ptr;
664}
665
666PERL_STATIC_INLINE I32
667S_POPMARK(pTHX)
668{
669 DEBUG_s(DEBUG_v(PerlIO_printf(Perl_debug_log,
670 "MARK pop %p %" IVdf "\n",
671 (PL_markstack_ptr-1),
672 (IV)*(PL_markstack_ptr-1))));
673 assert((PL_markstack_ptr > PL_markstack) || !"MARK underflow");
674 return *PL_markstack_ptr--;
675}
676# endif
677
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678/*
679 * Make all runtime-links of perl.
680 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200681 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 * 2. Get pointer to perl function by GetProcAddress.
683 * 3. Repeat 2, until get all functions will be used.
684 *
685 * Parameter 'libname' provides name of DLL.
686 * Return OK or FAIL.
687 */
688 static int
689perl_runtime_link_init(char *libname, int verbose)
690{
691 int i;
692
693 if (hPerlLib != NULL)
694 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200695 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 {
697 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100698 semsg(_("E370: Could not load library %s"), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 return FAIL;
700 }
701 for (i = 0; perl_funcname_table[i].ptr; ++i)
702 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200703 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 perl_funcname_table[i].name)))
705 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200706 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 hPerlLib = NULL;
708 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100709 semsg((const char *)_(e_loadfunc), perl_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 return FAIL;
711 }
712 }
713 return OK;
714}
715
716/*
717 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
718 * There were no DLL loaded, return FALSE.
719 */
720 int
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100721perl_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100723 return perl_runtime_link_init((char *)p_perldll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724}
725#endif /* DYNAMIC_PERL */
726
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200727#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
728static void vim_IOLayer_init(void);
729#endif
730
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731/*
732 * perl_init(): initialize perl interpreter
733 * We have to call perl_parse to initialize some structures,
734 * there's nothing to actually parse.
735 */
736 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100737perl_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000739 char *bootargs[] = { "VI", NULL };
740 int argc = 3;
741 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000742
Bram Moolenaarc236c162008-07-13 17:41:49 +0000743#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000744 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 perl_interp = perl_alloc();
747 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000748 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
750 VIM_init();
751#ifdef USE_SFIO
752 sfdisc(PerlIO_stdout(), sfdcnewvim());
753 sfdisc(PerlIO_stderr(), sfdcnewvim());
754 sfsetbuf(PerlIO_stdout(), NULL, 0);
755 sfsetbuf(PerlIO_stderr(), NULL, 0);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +0200756#elif defined(PERLIO_LAYERS)
757 vim_IOLayer_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#endif
759}
760
761/*
762 * perl_end(): clean up after ourselves
763 */
764 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100765perl_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766{
767 if (perl_interp)
768 {
769 perl_run(perl_interp);
770 perl_destruct(perl_interp);
771 perl_free(perl_interp);
772 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000773#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaare9b892e2016-01-17 21:15:58 +0100774 Perl_sys_term();
Bram Moolenaarc236c162008-07-13 17:41:49 +0000775#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 }
777#ifdef DYNAMIC_PERL
778 if (hPerlLib)
779 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200780 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 hPerlLib = NULL;
782 }
783#endif
784}
785
786/*
787 * msg_split(): send a message to the message handling routines
788 * split at '\n' first though.
789 */
790 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100791msg_split(
792 char_u *s,
793 int attr) /* highlighting attributes */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794{
795 char *next;
796 char *token = (char *)s;
797
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000798 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 {
800 *next++ = '\0'; /* replace \n with \0 */
Bram Moolenaar32526b32019-01-19 17:43:09 +0100801 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 token = next;
803 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000804 if (*token && !got_int)
Bram Moolenaar32526b32019-01-19 17:43:09 +0100805 msg_attr(token, attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806}
807
808#ifndef FEAT_EVAL
809/*
810 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
811 * work properly.
812 */
813 char_u *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100814eval_to_string(
815 char_u *arg UNUSED,
816 char_u **nextcmd UNUSED,
817 int dolist UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
819 return NULL;
820}
821#endif
822
823/*
824 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000825 * The b_perl_private/w_perl_private part of the SCR structure points to the
826 * SV, so there can only be one such SV for a particular SCR structure. When
827 * the last reference has gone (DESTROY is called),
828 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 * all references are gone, the value of the SV is reset;
830 * any subsequent use of any of those reference will produce
831 * a warning. (see typemap)
832 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000833
834 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100835newWINrv(SV *rv, win_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000836{
837 sv_upgrade(rv, SVt_RV);
838 if (ptr->w_perl_private == NULL)
839 {
840 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100841 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000842 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200843 SvREFCNT_inc_void_NN(ptr->w_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000844 SvRV(rv) = ptr->w_perl_private;
845 SvROK_on(rv);
846 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847}
848
Bram Moolenaare344bea2005-09-01 20:46:49 +0000849 static SV *
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100850newBUFrv(SV *rv, buf_T *ptr)
Bram Moolenaare344bea2005-09-01 20:46:49 +0000851{
852 sv_upgrade(rv, SVt_RV);
853 if (ptr->b_perl_private == NULL)
854 {
855 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100856 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000857 }
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200858 SvREFCNT_inc_void_NN(ptr->b_perl_private);
Bram Moolenaare344bea2005-09-01 20:46:49 +0000859 SvRV(rv) = ptr->b_perl_private;
860 SvROK_on(rv);
861 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
862}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200864#if 0
865SV *__sv_save[1024];
866int __sv_save_ix;
867# define D_Save_Sv(sv) do { if (__sv_save_ix < 1024) __sv_save[__sv_save_ix++] = (sv); } while (0)
868#else
869# define D_Save_Sv(sv) NOOP
870#endif
871
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872/*
873 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200874 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 */
876 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100877perl_win_free(win_T *wp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200879 if (wp->w_perl_private && perl_interp != NULL)
880 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200881 SV *sv = (SV*)wp->w_perl_private;
882 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200883 sv_setiv(sv, 0);
884 SvREFCNT_dec(sv);
885 }
886 wp->w_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887}
888
889 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100890perl_buf_free(buf_T *bp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891{
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200892 if (bp->b_perl_private && perl_interp != NULL)
893 {
Bram Moolenaar578333b2018-07-22 07:31:09 +0200894 SV *sv = (SV *)bp->b_perl_private;
895 D_Save_Sv(sv);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200896 sv_setiv(sv, 0);
897 SvREFCNT_dec(sv);
898 }
899 bp->b_perl_private = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900}
901
902#ifndef PROTO
903# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
904I32 cur_val(pTHX_ IV iv, SV *sv);
905# else
906I32 cur_val(IV iv, SV *sv);
Bram Moolenaareeb50ab2016-06-26 17:19:46 +0200907# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908
909/*
910 * Handler for the magic variables $main::curwin and $main::curbuf.
911 * The handler is put into the magic vtbl for these variables.
912 * (This is effectively a C-level equivalent of a tied variable).
913 * There is no "set" function as the variables are read-only.
914 */
915# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
916I32 cur_val(pTHX_ IV iv, SV *sv)
917# else
918I32 cur_val(IV iv, SV *sv)
919# endif
920{
921 SV *rv;
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200922
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923 if (iv == 0)
924 rv = newWINrv(newSV(0), curwin);
925 else
926 rv = newBUFrv(newSV(0), curbuf);
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200927
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200928 if (SvRV(sv) != SvRV(rv))
929 // XXX: This magic variable is a bit confusing...
930 // Is curently refcounted ?
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +0200931 sv_setsv(sv, rv);
932
Bram Moolenaar41c363a2018-08-02 21:46:51 +0200933 SvREFCNT_dec(rv);
934
Bram Moolenaar071d4272004-06-13 20:20:40 +0000935 return 0;
936}
937#endif /* !PROTO */
938
939struct ufuncs cw_funcs = { cur_val, 0, 0 };
940struct ufuncs cb_funcs = { cur_val, 0, 1 };
941
942/*
943 * VIM_init(): Vim-specific initialisation.
944 * Make the magical main::curwin and main::curbuf variables
945 */
946 static void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100947VIM_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948{
949 static char cw[] = "main::curwin";
950 static char cb[] = "main::curbuf";
951 SV *sv;
952
953 sv = perl_get_sv(cw, TRUE);
954 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
955 SvREADONLY_on(sv);
956
957 sv = perl_get_sv(cb, TRUE);
958 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
959 SvREADONLY_on(sv);
960
961 /*
962 * Setup the Safe compartment.
963 * It shouldn't be a fatal error if the Safe module is missing.
964 * XXX: Only shares the 'Msg' routine (which has to be called
965 * like 'Msg(...)').
966 */
967 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
968
969}
970
971#ifdef DYNAMIC_PERL
972static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
973#endif
974
975/*
976 * ":perl"
977 */
978 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +0100979ex_perl(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980{
981 char *err;
982 char *script;
983 STRLEN length;
984 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200985#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988
989 script = (char *)script_get(eap, eap->arg);
990 if (eap->skip)
991 {
992 vim_free(script);
993 return;
994 }
995
996 if (perl_interp == NULL)
997 {
998#ifdef DYNAMIC_PERL
999 if (!perl_enabled(TRUE))
1000 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001001 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002 vim_free(script);
1003 return;
1004 }
1005#endif
1006 perl_init();
1007 }
1008
1009 {
1010 dSP;
1011 ENTER;
1012 SAVETMPS;
1013
1014 if (script == NULL)
1015 sv = newSVpv((char *)eap->arg, 0);
1016 else
1017 {
1018 sv = newSVpv(script, 0);
1019 vim_free(script);
1020 }
1021
1022#ifdef HAVE_SANDBOX
1023 if (sandbox)
1024 {
Bram Moolenaara1711622011-07-27 14:15:46 +02001025 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001026# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +00001027 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001028 emsg(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001029 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +00001030# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 {
1032 PUSHMARK(SP);
1033 XPUSHs(safe);
1034 XPUSHs(sv);
1035 PUTBACK;
1036 perl_call_method("reval", G_DISCARD);
1037 }
1038 }
1039 else
1040#endif
1041 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1042
1043 SvREFCNT_dec(sv);
1044
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001045 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046
1047 FREETMPS;
1048 LEAVE;
1049
1050 if (!length)
1051 return;
1052
1053 msg_split((char_u *)err, highlight_attr[HLF_E]);
1054 return;
1055 }
1056}
1057
1058 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001059replace_line(linenr_T *line, linenr_T *end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060{
1061 char *str;
1062
1063 if (SvOK(GvSV(PL_defgv)))
1064 {
1065 str = SvPV(GvSV(PL_defgv), PL_na);
1066 ml_replace(*line, (char_u *)str, 1);
1067 changed_bytes(*line, 0);
1068 }
1069 else
1070 {
1071 ml_delete(*line, FALSE);
1072 deleted_lines_mark(*line, 1L);
1073 --(*end);
1074 --(*line);
1075 }
1076 return OK;
1077}
1078
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001079static struct ref_map_S {
1080 void *vim_ref;
1081 SV *perl_ref;
1082 struct ref_map_S *next;
1083} *ref_map = NULL;
1084
1085 static void
1086ref_map_free(void)
1087{
1088 struct ref_map_S *tofree;
1089 struct ref_map_S *refs = ref_map;
1090
1091 while (refs) {
1092 tofree = refs;
1093 refs = refs->next;
1094 vim_free(tofree);
1095 }
1096 ref_map = NULL;
1097}
1098
1099 static struct ref_map_S *
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001100ref_map_find_SV(SV *const sv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001101{
1102 struct ref_map_S *refs = ref_map;
1103 int count = 350;
1104
1105 while (refs) {
1106 if (refs->perl_ref == sv)
1107 break;
1108 refs = refs->next;
1109 count--;
1110 }
1111
1112 if (!refs && count > 0) {
1113 refs = (struct ref_map_S *)alloc(sizeof(struct ref_map_S));
1114 if (!refs)
1115 return NULL;
1116 refs->perl_ref = sv;
1117 refs->vim_ref = NULL;
1118 refs->next = ref_map;
1119 ref_map = refs;
1120 }
1121
1122 return refs;
1123}
1124
1125 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001126perl_to_vim(SV *sv, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001127{
1128 if (SvROK(sv))
1129 sv = SvRV(sv);
1130
1131 switch (SvTYPE(sv)) {
1132 case SVt_NULL:
1133 break;
1134 case SVt_NV: /* float */
1135#ifdef FEAT_FLOAT
1136 rettv->v_type = VAR_FLOAT;
1137 rettv->vval.v_float = SvNV(sv);
1138 break;
1139#endif
1140 case SVt_IV: /* integer */
1141 if (!SvROK(sv)) { /* references should be string */
1142 rettv->vval.v_number = SvIV(sv);
1143 break;
1144 }
Bram Moolenaar2f40d122017-10-24 21:49:36 +02001145 /* FALLTHROUGH */
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001146 case SVt_PV: /* string */
1147 {
1148 size_t len = 0;
1149 char * str_from = SvPV(sv, len);
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001150 char_u *str_to = (char_u*)alloc(
1151 (unsigned)(sizeof(char_u) * (len + 1)));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001152
1153 if (str_to) {
1154 str_to[len] = '\0';
1155
1156 while (len--) {
1157 if (str_from[len] == '\0')
1158 str_to[len] = '\n';
1159 else
1160 str_to[len] = str_from[len];
1161 }
1162 }
1163
1164 rettv->v_type = VAR_STRING;
1165 rettv->vval.v_string = str_to;
1166 break;
1167 }
1168 case SVt_PVAV: /* list */
1169 {
1170 SSize_t size;
1171 listitem_T * item;
1172 SV ** item2;
1173 list_T * list;
1174 struct ref_map_S * refs;
1175
1176 if ((refs = ref_map_find_SV(sv)) == NULL)
1177 return FAIL;
1178
1179 if (refs->vim_ref)
1180 list = (list_T *) refs->vim_ref;
1181 else
1182 {
1183 if ((list = list_alloc()) == NULL)
1184 return FAIL;
1185 refs->vim_ref = list;
1186
1187 for (size = av_len((AV*)sv); size >= 0; size--)
1188 {
1189 if ((item = listitem_alloc()) == NULL)
1190 break;
1191
1192 item->li_tv.v_type = VAR_NUMBER;
1193 item->li_tv.v_lock = 0;
1194 item->li_tv.vval.v_number = 0;
1195 list_insert(list, item, list->lv_first);
1196
1197 item2 = av_fetch((AV *)sv, size, 0);
1198
1199 if (item2 == NULL || *item2 == NULL ||
Bram Moolenaard99df422016-01-29 23:20:40 +01001200 perl_to_vim(*item2, &item->li_tv) == FAIL)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001201 break;
1202 }
1203 }
1204
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001205 rettv_list_set(rettv, list);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001206 break;
1207 }
1208 case SVt_PVHV: /* dictionary */
1209 {
1210 HE * entry;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001211 I32 key_len;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001212 char * key;
1213 dictitem_T * item;
1214 SV * item2;
1215 dict_T * dict;
1216 struct ref_map_S * refs;
1217
1218 if ((refs = ref_map_find_SV(sv)) == NULL)
1219 return FAIL;
1220
1221 if (refs->vim_ref)
1222 dict = (dict_T *) refs->vim_ref;
1223 else
1224 {
1225
1226 if ((dict = dict_alloc()) == NULL)
1227 return FAIL;
1228 refs->vim_ref = dict;
1229
1230 hv_iterinit((HV *)sv);
1231
1232 for (entry = hv_iternext((HV *)sv); entry; entry = hv_iternext((HV *)sv))
1233 {
1234 key_len = 0;
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001235 key = hv_iterkey(entry, &key_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001236
Bram Moolenaar254ebaf2016-02-23 16:06:28 +01001237 if (!key || !key_len || strlen(key) < (size_t)key_len) {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001238 semsg("Malformed key Dictionary '%s'", key && *key ? key : "(empty)");
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001239 break;
1240 }
1241
1242 if ((item = dictitem_alloc((char_u *)key)) == NULL)
1243 break;
Bram Moolenaarc89d4b32018-07-08 17:19:02 +02001244 item->di_tv.v_type = VAR_NUMBER;
1245 item->di_tv.vval.v_number = 0;
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001246
1247 if (dict_add(dict, item) == FAIL) {
1248 dictitem_free(item);
1249 break;
1250 }
1251 item2 = hv_iterval((HV *)sv, entry);
1252 if (item2 == NULL || perl_to_vim(item2, &item->di_tv) == FAIL)
1253 break;
1254 }
1255 }
1256
Bram Moolenaar45cf6e92017-04-30 20:25:19 +02001257 rettv_dict_set(rettv, dict);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001258 break;
1259 }
1260 default: /* not convertible */
1261 {
1262 char *val = SvPV_nolen(sv);
1263 rettv->v_type = VAR_STRING;
1264 rettv->vval.v_string = val ? vim_strsave((char_u *)val) : NULL;
1265 break;
1266 }
1267 }
1268 return OK;
1269}
1270
1271/*
1272 * "perleval()"
1273 */
1274 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001275do_perleval(char_u *str, typval_T *rettv)
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001276{
1277 char *err = NULL;
1278 STRLEN err_len = 0;
1279 SV *sv = NULL;
1280#ifdef HAVE_SANDBOX
1281 SV *safe;
1282#endif
1283
1284 if (perl_interp == NULL)
1285 {
1286#ifdef DYNAMIC_PERL
1287 if (!perl_enabled(TRUE))
1288 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001289 emsg(_(e_noperl));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001290 return;
1291 }
1292#endif
1293 perl_init();
1294 }
1295
1296 {
1297 dSP;
1298 ENTER;
1299 SAVETMPS;
1300
1301#ifdef HAVE_SANDBOX
1302 if (sandbox)
1303 {
1304 safe = get_sv("VIM::safe", FALSE);
1305# ifndef MAKE_TEST /* avoid a warning for unreachable code */
1306 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001307 emsg(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001308 else
1309# endif
1310 {
1311 sv = newSVpv((char *)str, 0);
1312 PUSHMARK(SP);
1313 XPUSHs(safe);
1314 XPUSHs(sv);
1315 PUTBACK;
1316 call_method("reval", G_SCALAR);
1317 SPAGAIN;
1318 SvREFCNT_dec(sv);
1319 sv = POPs;
1320 }
1321 }
1322 else
1323#endif /* HAVE_SANDBOX */
1324 sv = eval_pv((char *)str, 0);
1325
1326 if (sv) {
1327 perl_to_vim(sv, rettv);
1328 ref_map_free();
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001329 err = SvPV(GvSV(PL_errgv), err_len);
Bram Moolenaare9b892e2016-01-17 21:15:58 +01001330 }
1331 PUTBACK;
1332 FREETMPS;
1333 LEAVE;
1334 }
1335 if (err_len)
1336 msg_split((char_u *)err, highlight_attr[HLF_E]);
1337}
1338
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339/*
1340 * ":perldo".
1341 */
1342 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01001343ex_perldo(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344{
1345 STRLEN length;
1346 SV *sv;
1347 char *str;
1348 linenr_T i;
Bram Moolenaar85b57432017-01-29 22:59:12 +01001349 buf_T *was_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01001351 if (BUFEMPTY())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 return;
1353
1354 if (perl_interp == NULL)
1355 {
1356#ifdef DYNAMIC_PERL
1357 if (!perl_enabled(TRUE))
1358 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001359 emsg(_(e_noperl));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 return;
1361 }
1362#endif
1363 perl_init();
1364 }
1365 {
1366 dSP;
1367 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001368 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
1369 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 sv_catpvn(sv, (char *)eap->arg, length);
1371 sv_catpvn(sv, "}", 1);
1372 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
1373 SvREFCNT_dec(sv);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001374 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375 if (length)
1376 goto err;
1377
1378 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
1379 return;
1380
1381 ENTER;
1382 SAVETMPS;
1383 for (i = eap->line1; i <= eap->line2; i++)
1384 {
Bram Moolenaar85b57432017-01-29 22:59:12 +01001385 /* Check the line number, the command my have deleted lines. */
1386 if (i > curbuf->b_ml.ml_line_count)
1387 break;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001388 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 PUSHMARK(sp);
1390 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaar7b61bf12016-06-26 17:16:51 +02001391 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaar85b57432017-01-29 22:59:12 +01001392 if (length || curbuf != was_curbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 break;
1394 SPAGAIN;
1395 if (SvTRUEx(POPs))
1396 {
1397 if (replace_line(&i, &eap->line2) != OK)
1398 {
1399 PUTBACK;
1400 break;
1401 }
1402 }
1403 PUTBACK;
1404 }
1405 FREETMPS;
1406 LEAVE;
1407 check_cursor();
1408 update_screen(NOT_VALID);
1409 if (!length)
1410 return;
1411
1412err:
1413 msg_split((char_u *)str, highlight_attr[HLF_E]);
1414 return;
1415 }
1416}
1417
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001418#if defined(PERLIO_LAYERS) && !defined(USE_SFIO)
1419typedef struct {
1420 struct _PerlIO base;
1421 int attr;
1422} PerlIOVim;
1423
1424 static IV
1425PerlIOVim_pushed(pTHX_ PerlIO *f, const char *mode,
1426 SV *arg, PerlIO_funcs *tab)
1427{
1428 PerlIOVim *s = PerlIOSelf(f, PerlIOVim);
1429 s->attr = 0;
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001430 if (arg && SvPOK(arg))
1431 s->attr = syn_name2attr((char_u *)SvPV_nolen(arg));
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001432 return PerlIOBase_pushed(aTHX_ f, mode, (SV *)NULL, tab);
1433}
1434
1435 static SSize_t
1436PerlIOVim_write(pTHX_ PerlIO *f, const void *vbuf, Size_t count)
1437{
1438 char_u *str;
1439 PerlIOVim * s = PerlIOSelf(f, PerlIOVim);
1440
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001441 str = vim_strnsave((char_u *)vbuf, (int)count);
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001442 if (str == NULL)
1443 return 0;
1444 msg_split((char_u *)str, s->attr);
1445 vim_free(str);
1446
Bram Moolenaar9b0ac222016-06-01 20:31:43 +02001447 return (SSize_t)count;
Bram Moolenaar6244a0f2016-04-14 14:09:25 +02001448}
1449
1450static PERLIO_FUNCS_DECL(PerlIO_Vim) = {
1451 sizeof(PerlIO_funcs),
1452 "Vim",
1453 sizeof(PerlIOVim),
1454 PERLIO_K_DUMMY, /* flags */
1455 PerlIOVim_pushed,
1456 NULL, /* popped */
1457 NULL, /* open */
1458 NULL, /* binmode */
1459 NULL, /* arg */
1460 NULL, /* fileno */
1461 NULL, /* dup */
1462 NULL, /* read */
1463 NULL, /* unread */
1464 PerlIOVim_write,
1465 NULL, /* seek */
1466 NULL, /* tell */
1467 NULL, /* close */
1468 NULL, /* flush */
1469 NULL, /* fill */
1470 NULL, /* eof */
1471 NULL, /* error */
1472 NULL, /* clearerr */
1473 NULL, /* setlinebuf */
1474 NULL, /* get_base */
1475 NULL, /* get_bufsiz */
1476 NULL, /* get_ptr */
1477 NULL, /* get_cnt */
1478 NULL /* set_ptrcnt */
1479};
1480
1481/* Use Vim routine for print operator */
1482 static void
1483vim_IOLayer_init(void)
1484{
1485 PerlIO_define_layer(aTHX_ PERLIO_FUNCS_CAST(&PerlIO_Vim));
1486 (void)eval_pv( "binmode(STDOUT, ':Vim')"
1487 " && binmode(STDERR, ':Vim(ErrorMsg)');", 0);
1488}
1489#endif /* PERLIO_LAYERS && !USE_SFIO */
1490
Bram Moolenaar071d4272004-06-13 20:20:40 +00001491XS(boot_VIM);
1492
1493 static void
1494xs_init(pTHX)
1495{
1496 char *file = __FILE__;
1497
1498 /* DynaLoader is a special case */
1499 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1500 newXS("VIM::bootstrap", boot_VIM, file);
1501}
1502
1503typedef win_T * VIWIN;
1504typedef buf_T * VIBUF;
1505
1506MODULE = VIM PACKAGE = VIM
1507
1508void
1509Msg(text, hl=NULL)
1510 char *text;
1511 char *hl;
1512
1513 PREINIT:
1514 int attr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515
1516 PPCODE:
1517 if (text != NULL)
1518 {
1519 attr = 0;
1520 if (hl != NULL)
Bram Moolenaar1b9645d2017-09-17 23:03:31 +02001521 attr = syn_name2attr((char_u *)hl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001522 msg_split((char_u *)text, attr);
1523 }
1524
1525void
1526SetOption(line)
1527 char *line;
1528
1529 PPCODE:
1530 if (line != NULL)
1531 do_set((char_u *)line, 0);
1532 update_screen(NOT_VALID);
1533
1534void
1535DoCommand(line)
1536 char *line;
1537
1538 PPCODE:
1539 if (line != NULL)
1540 do_cmdline_cmd((char_u *)line);
1541
1542void
1543Eval(str)
1544 char *str;
1545
1546 PREINIT:
1547 char_u *value;
1548 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001549 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 if (value == NULL)
1551 {
1552 XPUSHs(sv_2mortal(newSViv(0)));
1553 XPUSHs(sv_2mortal(newSVpv("", 0)));
1554 }
1555 else
1556 {
1557 XPUSHs(sv_2mortal(newSViv(1)));
1558 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1559 vim_free(value);
1560 }
1561
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001562SV*
1563Blob(SV* sv)
1564 PREINIT:
Bram Moolenaarb1443b42019-01-13 23:51:14 +01001565 STRLEN len;
1566 char *s;
1567 unsigned i;
1568 char buf[3];
1569 SV* newsv;
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001570
1571 CODE:
1572 s = SvPVbyte(sv, len);
1573 newsv = newSVpv("0z", 2);
1574 for (i = 0; i < len; i++)
1575 {
1576 sprintf(buf, "%02X", s[i]);
1577 sv_catpvn(newsv, buf, 2);
1578 }
1579 RETVAL = newsv;
1580 OUTPUT:
1581 RETVAL
1582
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583void
1584Buffers(...)
1585
1586 PREINIT:
1587 buf_T *vimbuf;
1588 int i, b;
1589
1590 PPCODE:
1591 if (items == 0)
1592 {
1593 if (GIMME == G_SCALAR)
1594 {
1595 i = 0;
Bram Moolenaar29323592016-07-24 22:04:11 +02001596 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 ++i;
1598
1599 XPUSHs(sv_2mortal(newSViv(i)));
1600 }
1601 else
1602 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001603 FOR_ALL_BUFFERS(vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001604 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 }
1606 }
1607 else
1608 {
1609 for (i = 0; i < items; i++)
1610 {
1611 SV *sv = ST(i);
1612 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001613 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 else
1615 {
1616 char_u *pat;
1617 STRLEN len;
1618
1619 pat = (char_u *)SvPV(sv, len);
1620 ++emsg_off;
Bram Moolenaar16896a12018-03-06 12:25:56 +01001621 b = buflist_findpat(pat, pat + len, TRUE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 --emsg_off;
1623 }
1624
1625 if (b >= 0)
1626 {
1627 vimbuf = buflist_findnr(b);
1628 if (vimbuf)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001629 XPUSHs(sv_2mortal(newBUFrv(newSV(0), vimbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 }
1631 }
1632 }
1633
1634void
1635Windows(...)
1636
1637 PREINIT:
1638 win_T *vimwin;
1639 int i, w;
1640
1641 PPCODE:
1642 if (items == 0)
1643 {
1644 if (GIMME == G_SCALAR)
1645 XPUSHs(sv_2mortal(newSViv(win_count())));
1646 else
1647 {
Bram Moolenaar29323592016-07-24 22:04:11 +02001648 FOR_ALL_WINDOWS(vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001649 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 }
1651 }
1652 else
1653 {
1654 for (i = 0; i < items; i++)
1655 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001656 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 vimwin = win_find_nr(w);
1658 if (vimwin)
Bram Moolenaar18c4f1b2018-07-16 17:45:38 +02001659 XPUSHs(sv_2mortal(newWINrv(newSV(0), vimwin)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 }
1661 }
1662
1663MODULE = VIM PACKAGE = VIWIN
1664
1665void
1666DESTROY(win)
1667 VIWIN win
1668
1669 CODE:
1670 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001671 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672
1673SV *
1674Buffer(win)
1675 VIWIN win
1676
1677 CODE:
1678 if (!win_valid(win))
1679 win = curwin;
1680 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1681 OUTPUT:
1682 RETVAL
1683
1684void
1685SetHeight(win, height)
1686 VIWIN win
1687 int height;
1688
1689 PREINIT:
1690 win_T *savewin;
1691
1692 PPCODE:
1693 if (!win_valid(win))
1694 win = curwin;
1695 savewin = curwin;
1696 curwin = win;
1697 win_setheight(height);
1698 curwin = savewin;
1699
1700void
Bram Moolenaar864733a2016-04-02 14:18:01 +02001701Cursor(win, ...)
1702 VIWIN win
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703
1704 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001705 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001706 {
1707 EXTEND(sp, 2);
1708 if (!win_valid(win))
1709 win = curwin;
1710 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1711 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1712 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001713 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 {
1715 int lnum, col;
1716
1717 if (!win_valid(win))
1718 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001719 lnum = (int) SvIV(ST(1));
1720 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 win->w_cursor.lnum = lnum;
1722 win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02001723 win->w_set_curswant = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 check_cursor(); /* put cursor on an existing line */
1725 update_screen(NOT_VALID);
1726 }
1727
1728MODULE = VIM PACKAGE = VIBUF
1729
1730void
1731DESTROY(vimbuf)
1732 VIBUF vimbuf;
1733
1734 CODE:
1735 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001736 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
1738void
1739Name(vimbuf)
1740 VIBUF vimbuf;
1741
1742 PPCODE:
1743 if (!buf_valid(vimbuf))
1744 vimbuf = curbuf;
1745 /* No file name returns an empty string */
1746 if (vimbuf->b_fname == NULL)
1747 XPUSHs(sv_2mortal(newSVpv("", 0)));
1748 else
1749 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1750
1751void
1752Number(vimbuf)
1753 VIBUF vimbuf;
1754
1755 PPCODE:
1756 if (!buf_valid(vimbuf))
1757 vimbuf = curbuf;
1758 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1759
1760void
1761Count(vimbuf)
1762 VIBUF vimbuf;
1763
1764 PPCODE:
1765 if (!buf_valid(vimbuf))
1766 vimbuf = curbuf;
1767 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1768
1769void
1770Get(vimbuf, ...)
1771 VIBUF vimbuf;
1772
1773 PREINIT:
1774 char_u *line;
1775 int i;
1776 long lnum;
1777 PPCODE:
1778 if (buf_valid(vimbuf))
1779 {
1780 for (i = 1; i < items; i++)
1781 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001782 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1784 {
1785 line = ml_get_buf(vimbuf, lnum, FALSE);
1786 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1787 }
1788 }
1789 }
1790
1791void
1792Set(vimbuf, ...)
1793 VIBUF vimbuf;
1794
1795 PREINIT:
1796 int i;
1797 long lnum;
1798 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001799 PPCODE:
1800 if (buf_valid(vimbuf))
1801 {
1802 if (items < 3)
1803 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1804
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001805 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001806 for(i = 2; i < items; i++, lnum++)
1807 {
1808 line = SvPV(ST(i),PL_na);
1809 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1810 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001811 aco_save_T aco;
1812
1813 /* set curwin/curbuf for "vimbuf" and save some things */
1814 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001815
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816 if (u_savesub(lnum) == OK)
1817 {
1818 ml_replace(lnum, (char_u *)line, TRUE);
1819 changed_bytes(lnum, 0);
1820 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001821
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001822 /* restore curwin/curbuf and a few other things */
1823 aucmd_restbuf(&aco);
1824 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 }
1826 }
1827 }
1828
1829void
1830Delete(vimbuf, ...)
1831 VIBUF vimbuf;
1832
1833 PREINIT:
1834 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 PPCODE:
1836 if (buf_valid(vimbuf))
1837 {
1838 if (items == 2)
1839 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001840 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 count = 1;
1842 }
1843 else if (items == 3)
1844 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001845 lnum = (long) SvIV(ST(1));
1846 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001847 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001849 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 {
1851 lnum -= count;
1852 count = -count;
1853 }
1854 }
1855 if (items >= 2)
1856 {
1857 for (i = 0; i < count; i++)
1858 {
1859 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1860 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001861 aco_save_T aco;
1862
1863 /* set curwin/curbuf for "vimbuf" and save some things */
1864 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001865
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if (u_savedel(lnum, 1) == OK)
1867 {
1868 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001869 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001872
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001873 /* restore curwin/curbuf and a few other things */
1874 aucmd_restbuf(&aco);
1875 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 update_curbuf(VALID);
1878 }
1879 }
1880 }
1881 }
1882
1883void
1884Append(vimbuf, ...)
1885 VIBUF vimbuf;
1886
1887 PREINIT:
1888 int i;
1889 long lnum;
1890 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 PPCODE:
1892 if (buf_valid(vimbuf))
1893 {
1894 if (items < 3)
1895 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1896
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001897 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 for (i = 2; i < items; i++, lnum++)
1899 {
1900 line = SvPV(ST(i),PL_na);
1901 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1902 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001903 aco_save_T aco;
1904
1905 /* set curwin/curbuf for "vimbuf" and save some things */
1906 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001907
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 if (u_inssub(lnum + 1) == OK)
1909 {
1910 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1911 appended_lines_mark(lnum, 1L);
1912 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001913
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001914 /* restore curwin/curbuf and a few other things */
1915 aucmd_restbuf(&aco);
1916 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001917
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 update_curbuf(VALID);
1919 }
1920 }
1921 }
1922
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01001923#ifdef __GNUC__
1924# pragma GCC diagnostic pop
1925#endif