line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
/* |
2
|
|
|
|
|
|
|
* This file was generated automatically by ExtUtils::ParseXS version 3.44 from the |
3
|
|
|
|
|
|
|
* contents of Prefect.xs. Do not edit this file, edit Prefect.xs instead. |
4
|
|
|
|
|
|
|
* |
5
|
|
|
|
|
|
|
* ANY CHANGES MADE HERE WILL BE LOST! |
6
|
|
|
|
|
|
|
* |
7
|
|
|
|
|
|
|
*/ |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#line 1 "Prefect.xs" |
10
|
|
|
|
|
|
|
#include "EXTERN.h" |
11
|
|
|
|
|
|
|
#include "perl.h" |
12
|
|
|
|
|
|
|
#include "XSUB.h" |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
#include "libdontpanic.h" |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
#line 17 "Prefect.c" |
17
|
|
|
|
|
|
|
#ifndef PERL_UNUSED_VAR |
18
|
|
|
|
|
|
|
# define PERL_UNUSED_VAR(var) if (0) var = var |
19
|
|
|
|
|
|
|
#endif |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
#ifndef dVAR |
22
|
|
|
|
|
|
|
# define dVAR dNOOP |
23
|
|
|
|
|
|
|
#endif |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
/* This stuff is not part of the API! You have been warned. */ |
27
|
|
|
|
|
|
|
#ifndef PERL_VERSION_DECIMAL |
28
|
|
|
|
|
|
|
# define PERL_VERSION_DECIMAL(r,v,s) (r*1000000 + v*1000 + s) |
29
|
|
|
|
|
|
|
#endif |
30
|
|
|
|
|
|
|
#ifndef PERL_DECIMAL_VERSION |
31
|
|
|
|
|
|
|
# define PERL_DECIMAL_VERSION \ |
32
|
|
|
|
|
|
|
PERL_VERSION_DECIMAL(PERL_REVISION,PERL_VERSION,PERL_SUBVERSION) |
33
|
|
|
|
|
|
|
#endif |
34
|
|
|
|
|
|
|
#ifndef PERL_VERSION_GE |
35
|
|
|
|
|
|
|
# define PERL_VERSION_GE(r,v,s) \ |
36
|
|
|
|
|
|
|
(PERL_DECIMAL_VERSION >= PERL_VERSION_DECIMAL(r,v,s)) |
37
|
|
|
|
|
|
|
#endif |
38
|
|
|
|
|
|
|
#ifndef PERL_VERSION_LE |
39
|
|
|
|
|
|
|
# define PERL_VERSION_LE(r,v,s) \ |
40
|
|
|
|
|
|
|
(PERL_DECIMAL_VERSION <= PERL_VERSION_DECIMAL(r,v,s)) |
41
|
|
|
|
|
|
|
#endif |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
/* XS_INTERNAL is the explicit static-linkage variant of the default |
44
|
|
|
|
|
|
|
* XS macro. |
45
|
|
|
|
|
|
|
* |
46
|
|
|
|
|
|
|
* XS_EXTERNAL is the same as XS_INTERNAL except it does not include |
47
|
|
|
|
|
|
|
* "STATIC", ie. it exports XSUB symbols. You probably don't want that |
48
|
|
|
|
|
|
|
* for anything but the BOOT XSUB. |
49
|
|
|
|
|
|
|
* |
50
|
|
|
|
|
|
|
* See XSUB.h in core! |
51
|
|
|
|
|
|
|
*/ |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
/* TODO: This might be compatible further back than 5.10.0. */ |
55
|
|
|
|
|
|
|
#if PERL_VERSION_GE(5, 10, 0) && PERL_VERSION_LE(5, 15, 1) |
56
|
|
|
|
|
|
|
# undef XS_EXTERNAL |
57
|
|
|
|
|
|
|
# undef XS_INTERNAL |
58
|
|
|
|
|
|
|
# if defined(__CYGWIN__) && defined(USE_DYNAMIC_LOADING) |
59
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) __declspec(dllexport) XSPROTO(name) |
60
|
|
|
|
|
|
|
# define XS_INTERNAL(name) STATIC XSPROTO(name) |
61
|
|
|
|
|
|
|
# endif |
62
|
|
|
|
|
|
|
# if defined(__SYMBIAN32__) |
63
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) EXPORT_C XSPROTO(name) |
64
|
|
|
|
|
|
|
# define XS_INTERNAL(name) EXPORT_C STATIC XSPROTO(name) |
65
|
|
|
|
|
|
|
# endif |
66
|
|
|
|
|
|
|
# ifndef XS_EXTERNAL |
67
|
|
|
|
|
|
|
# if defined(HASATTRIBUTE_UNUSED) && !defined(__cplusplus) |
68
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) void name(pTHX_ CV* cv __attribute__unused__) |
69
|
|
|
|
|
|
|
# define XS_INTERNAL(name) STATIC void name(pTHX_ CV* cv __attribute__unused__) |
70
|
|
|
|
|
|
|
# else |
71
|
|
|
|
|
|
|
# ifdef __cplusplus |
72
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) extern "C" XSPROTO(name) |
73
|
|
|
|
|
|
|
# define XS_INTERNAL(name) static XSPROTO(name) |
74
|
|
|
|
|
|
|
# else |
75
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) XSPROTO(name) |
76
|
|
|
|
|
|
|
# define XS_INTERNAL(name) STATIC XSPROTO(name) |
77
|
|
|
|
|
|
|
# endif |
78
|
|
|
|
|
|
|
# endif |
79
|
|
|
|
|
|
|
# endif |
80
|
|
|
|
|
|
|
#endif |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
/* perl >= 5.10.0 && perl <= 5.15.1 */ |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
/* The XS_EXTERNAL macro is used for functions that must not be static |
86
|
|
|
|
|
|
|
* like the boot XSUB of a module. If perl didn't have an XS_EXTERNAL |
87
|
|
|
|
|
|
|
* macro defined, the best we can do is assume XS is the same. |
88
|
|
|
|
|
|
|
* Dito for XS_INTERNAL. |
89
|
|
|
|
|
|
|
*/ |
90
|
|
|
|
|
|
|
#ifndef XS_EXTERNAL |
91
|
|
|
|
|
|
|
# define XS_EXTERNAL(name) XS(name) |
92
|
|
|
|
|
|
|
#endif |
93
|
|
|
|
|
|
|
#ifndef XS_INTERNAL |
94
|
|
|
|
|
|
|
# define XS_INTERNAL(name) XS(name) |
95
|
|
|
|
|
|
|
#endif |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
/* Now, finally, after all this mess, we want an ExtUtils::ParseXS |
98
|
|
|
|
|
|
|
* internal macro that we're free to redefine for varying linkage due |
99
|
|
|
|
|
|
|
* to the EXPORT_XSUB_SYMBOLS XS keyword. This is internal, use |
100
|
|
|
|
|
|
|
* XS_EXTERNAL(name) or XS_INTERNAL(name) in your code if you need to! |
101
|
|
|
|
|
|
|
*/ |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
#undef XS_EUPXS |
104
|
|
|
|
|
|
|
#if defined(PERL_EUPXS_ALWAYS_EXPORT) |
105
|
|
|
|
|
|
|
# define XS_EUPXS(name) XS_EXTERNAL(name) |
106
|
|
|
|
|
|
|
#else |
107
|
|
|
|
|
|
|
/* default to internal */ |
108
|
|
|
|
|
|
|
# define XS_EUPXS(name) XS_INTERNAL(name) |
109
|
|
|
|
|
|
|
#endif |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
#ifndef PERL_ARGS_ASSERT_CROAK_XS_USAGE |
112
|
|
|
|
|
|
|
#define PERL_ARGS_ASSERT_CROAK_XS_USAGE assert(cv); assert(params) |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
/* prototype to pass -Wmissing-prototypes */ |
115
|
|
|
|
|
|
|
STATIC void |
116
|
|
|
|
|
|
|
S_croak_xs_usage(const CV *const cv, const char *const params); |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
STATIC void |
119
|
|
|
|
|
|
|
S_croak_xs_usage(const CV *const cv, const char *const params) |
120
|
|
|
|
|
|
|
{ |
121
|
|
|
|
|
|
|
const GV *const gv = CvGV(cv); |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
PERL_ARGS_ASSERT_CROAK_XS_USAGE; |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
if (gv) { |
126
|
|
|
|
|
|
|
const char *const gvname = GvNAME(gv); |
127
|
|
|
|
|
|
|
const HV *const stash = GvSTASH(gv); |
128
|
|
|
|
|
|
|
const char *const hvname = stash ? HvNAME(stash) : NULL; |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
if (hvname) |
131
|
|
|
|
|
|
|
Perl_croak_nocontext("Usage: %s::%s(%s)", hvname, gvname, params); |
132
|
|
|
|
|
|
|
else |
133
|
|
|
|
|
|
|
Perl_croak_nocontext("Usage: %s(%s)", gvname, params); |
134
|
|
|
|
|
|
|
} else { |
135
|
|
|
|
|
|
|
/* Pants. I don't think that it should be possible to get here. */ |
136
|
|
|
|
|
|
|
Perl_croak_nocontext("Usage: CODE(0x%" UVxf ")(%s)", PTR2UV(cv), params); |
137
|
|
|
|
|
|
|
} |
138
|
|
|
|
|
|
|
} |
139
|
|
|
|
|
|
|
#undef PERL_ARGS_ASSERT_CROAK_XS_USAGE |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
#define croak_xs_usage S_croak_xs_usage |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
#endif |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
/* NOTE: the prototype of newXSproto() is different in versions of perls, |
146
|
|
|
|
|
|
|
* so we define a portable version of newXSproto() |
147
|
|
|
|
|
|
|
*/ |
148
|
|
|
|
|
|
|
#ifdef newXS_flags |
149
|
|
|
|
|
|
|
#define newXSproto_portable(name, c_impl, file, proto) newXS_flags(name, c_impl, file, proto, 0) |
150
|
|
|
|
|
|
|
#else |
151
|
|
|
|
|
|
|
#define newXSproto_portable(name, c_impl, file, proto) (PL_Sv=(SV*)newXS(name, c_impl, file), sv_setpv(PL_Sv, proto), (CV*)PL_Sv) |
152
|
|
|
|
|
|
|
#endif /* !defined(newXS_flags) */ |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
#if PERL_VERSION_LE(5, 21, 5) |
155
|
|
|
|
|
|
|
# define newXS_deffile(a,b) Perl_newXS(aTHX_ a,b,file) |
156
|
|
|
|
|
|
|
#else |
157
|
|
|
|
|
|
|
# define newXS_deffile(a,b) Perl_newXS_deffile(aTHX_ a,b) |
158
|
|
|
|
|
|
|
#endif |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
#line 161 "Prefect.c" |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
XS_EUPXS(XS_Acme__Ford__Prefect_answer); /* prototype to pass -Wmissing-prototypes */ |
163
|
1
|
|
|
|
|
|
XS_EUPXS(XS_Acme__Ford__Prefect_answer) |
164
|
|
|
|
|
|
|
{ |
165
|
1
|
|
|
|
|
|
dVAR; dXSARGS; |
166
|
1
|
50
|
|
|
|
|
if (items != 0) |
167
|
0
|
|
|
|
|
|
croak_xs_usage(cv, ""); |
168
|
|
|
|
|
|
|
{ |
169
|
|
|
|
|
|
|
int RETVAL; |
170
|
1
|
50
|
|
|
|
|
dXSTARG; |
171
|
|
|
|
|
|
|
|
172
|
1
|
|
|
|
|
|
RETVAL = answer(); |
173
|
1
|
|
|
|
|
|
XSprePUSH; |
174
|
1
|
50
|
|
|
|
|
PUSHi((IV)RETVAL); |
175
|
|
|
|
|
|
|
} |
176
|
1
|
|
|
|
|
|
XSRETURN(1); |
177
|
|
|
|
|
|
|
} |
178
|
|
|
|
|
|
|
|
179
|
|
|
|
|
|
|
#ifdef __cplusplus |
180
|
|
|
|
|
|
|
extern "C" |
181
|
|
|
|
|
|
|
#endif |
182
|
|
|
|
|
|
|
XS_EXTERNAL(boot_Acme__Ford__Prefect); /* prototype to pass -Wmissing-prototypes */ |
183
|
1
|
|
|
|
|
|
XS_EXTERNAL(boot_Acme__Ford__Prefect) |
184
|
|
|
|
|
|
|
{ |
185
|
|
|
|
|
|
|
#if PERL_VERSION_LE(5, 21, 5) |
186
|
|
|
|
|
|
|
dVAR; dXSARGS; |
187
|
|
|
|
|
|
|
#else |
188
|
1
|
|
|
|
|
|
dVAR; dXSBOOTARGSXSAPIVERCHK; |
189
|
|
|
|
|
|
|
#endif |
190
|
|
|
|
|
|
|
#if PERL_VERSION_LE(5, 8, 999) /* PERL_VERSION_LT is 5.33+ */ |
191
|
|
|
|
|
|
|
char* file = __FILE__; |
192
|
|
|
|
|
|
|
#else |
193
|
1
|
|
|
|
|
|
const char* file = __FILE__; |
194
|
|
|
|
|
|
|
#endif |
195
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
PERL_UNUSED_VAR(file); |
197
|
|
|
|
|
|
|
|
198
|
|
|
|
|
|
|
PERL_UNUSED_VAR(cv); /* -W */ |
199
|
|
|
|
|
|
|
PERL_UNUSED_VAR(items); /* -W */ |
200
|
|
|
|
|
|
|
#if PERL_VERSION_LE(5, 21, 5) |
201
|
|
|
|
|
|
|
XS_VERSION_BOOTCHECK; |
202
|
|
|
|
|
|
|
# ifdef XS_APIVERSION_BOOTCHECK |
203
|
|
|
|
|
|
|
XS_APIVERSION_BOOTCHECK; |
204
|
|
|
|
|
|
|
# endif |
205
|
|
|
|
|
|
|
#endif |
206
|
|
|
|
|
|
|
|
207
|
1
|
|
|
|
|
|
newXS_deffile("Acme::Ford::Prefect::answer", XS_Acme__Ford__Prefect_answer); |
208
|
|
|
|
|
|
|
#if PERL_VERSION_LE(5, 21, 5) |
209
|
|
|
|
|
|
|
# if PERL_VERSION_GE(5, 9, 0) |
210
|
|
|
|
|
|
|
if (PL_unitcheckav) |
211
|
|
|
|
|
|
|
call_list(PL_scopestack_ix, PL_unitcheckav); |
212
|
|
|
|
|
|
|
# endif |
213
|
|
|
|
|
|
|
XSRETURN_YES; |
214
|
|
|
|
|
|
|
#else |
215
|
1
|
|
|
|
|
|
Perl_xs_boot_epilog(aTHX_ ax); |
216
|
|
|
|
|
|
|
#endif |
217
|
1
|
|
|
|
|
|
} |
218
|
|
|
|
|
|
|
|