File Coverage

t/MyTest_xsgen.cc
Criterion Covered Total %
statement 10 53 18.8
branch 3 62 4.8
condition n/a
subroutine n/a
pod n/a
total 13 115 11.3


line stmt bran cond sub pod time code
1             /*
2             * This file was generated automatically by ExtUtils::ParseXS version 3.34 from the
3             * contents of MyTest.xs. Do not edit this file, edit MyTest.xs instead.
4             *
5             * ANY CHANGES MADE HERE WILL BE LOST!
6             *
7             */
8              
9             #line 1 "t/MyTest.xs"
10             #include
11             #include
12              
13             using namespace xs;
14             using panda::string;
15              
16             #line 17 "t/MyTest_xsgen.cc"
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 "t/MyTest_xsgen.cc"
161              
162              
163 0           XS_EUPXS(XS_MyTest_bench_sv_payload_get) { xs::throw_guard(cv, [=]()
164             {
165 0           dVAR; dXSARGS;
166 0 0         if (items != 1)
167 0           croak_xs_usage(cv, "count");
168             {
169             uint64_t RETVAL;
170 0 0         dXSTARG;
    0          
171 0 0         int count = (int)SvIV(ST(0))
    0          
172             ;
173             #line 16 "t/MyTest.xs"
174             RETVAL = 0;
175             struct Epta {};
176             for (int i = 0; i < count; ++i) {
177             RETVAL += (uint64_t)typemap::object::TypemapMarker::get();
178             }
179             #line 180 "t/MyTest_xsgen.cc"
180 0 0         XSprePUSH; PUSHu((UV)RETVAL);
    0          
181             }
182 0           XSRETURN(1);
183 0 0         }); }
184              
185              
186              
187 0           XS_EUPXS(XS_MyTest_throw_exception) { xs::throw_guard(cv, [=]()
188             {
189 0           dVAR; dXSARGS;
190 0 0         if (items != 1)
191 0           croak_xs_usage(cv, "sv");
192             PERL_UNUSED_VAR(ax); /* -Wall */
193 0           SP -= items;
194             {
195 0           Sv sv = ST(0)
196             ;
197             #line 24 "t/MyTest.xs"
198             throw sv;
199             #line 200 "t/MyTest_xsgen.cc"
200             PUTBACK;
201             return;
202             }
203 0 0         }); }
204              
205              
206              
207 0           XS_EUPXS(XS_MyTest_throw_logic_error) { xs::throw_guard(cv, [=]()
208             {
209 0           dVAR; dXSARGS;
210 0 0         if (items != 0)
211 0           croak_xs_usage(cv, "");
212             PERL_UNUSED_VAR(ax); /* -Wall */
213 0           SP -= items;
214             {
215             #line 28 "t/MyTest.xs"
216             throw std::logic_error("my-logic-error");
217             #line 218 "t/MyTest_xsgen.cc"
218             PUTBACK;
219             return;
220             }
221 0 0         }); }
222              
223              
224              
225 0           XS_EUPXS(XS_MyTest_throw_backtrace) { xs::throw_guard(cv, [=]()
226             {
227 0           dVAR; dXSARGS;
228 0 0         if (items != 0)
229 0           croak_xs_usage(cv, "");
230             PERL_UNUSED_VAR(ax); /* -Wall */
231 0           SP -= items;
232             {
233             #line 32 "t/MyTest.xs"
234             throw panda::exception("my-error");
235             #line 236 "t/MyTest_xsgen.cc"
236             PUTBACK;
237             return;
238             }
239 0 0         }); }
240              
241              
242              
243 0           XS_EUPXS(XS_MyTest_test_leaks1) { xs::throw_guard(cv, [=]()
244             {
245 0           dVAR; dXSARGS;
246 0 0         if (items != 3)
247 0           croak_xs_usage(cv, "cls, meth, cnt");
248             {
249             uint64_t RETVAL;
250 0 0         dXSTARG;
    0          
251 0           string cls;
252 0           string meth;
253 0 0         int cnt = (int)SvIV(ST(2))
    0          
254             ;
255              
256             { STRLEN __cls_len;
257 0 0         const char* __cls_buf = SvPV(ST(0), __cls_len);
    0          
258 0 0         cls.assign(__cls_buf, __cls_len); }
259             ;
260              
261             { STRLEN __meth_len;
262 0 0         const char* __meth_buf = SvPV(ST(1), __meth_len);
    0          
263 0 0         meth.assign(__meth_buf, __meth_len); }
264             ;
265             #line 36 "t/MyTest.xs"
266             RETVAL = 0;
267             for (int i = 0; i < cnt; ++i) {
268             Stash stash(cls);
269             auto ref = stash.call(meth);
270             RETVAL += (uint64_t)ref.get();
271             }
272             #line 273 "t/MyTest_xsgen.cc"
273 0 0         XSprePUSH; PUSHu((UV)RETVAL);
    0          
274             }
275 0           XSRETURN(1);
276 0 0         }); }
277              
278             #ifdef __cplusplus
279             extern "C"
280             #endif
281              
282 68           XS_EXTERNAL(boot_MyTest) { xs::throw_guard(cv, [=]() mutable
283             {
284             #if PERL_VERSION_LE(5, 21, 5)
285             dVAR; dXSARGS;
286             #else
287 34 50         dVAR; dXSBOOTARGSXSAPIVERCHK;
    50          
288             #endif
289             #if (PERL_REVISION == 5 && PERL_VERSION < 9)
290             char* file = __FILE__;
291             #else
292 34           const char* file = __FILE__;
293             #endif
294              
295             PERL_UNUSED_VAR(file);
296              
297             PERL_UNUSED_VAR(cv); /* -W */
298             PERL_UNUSED_VAR(items); /* -W */
299             #if PERL_VERSION_LE(5, 21, 5)
300             XS_VERSION_BOOTCHECK;
301             # ifdef XS_APIVERSION_BOOTCHECK
302             XS_APIVERSION_BOOTCHECK;
303             # endif
304             #endif
305              
306 34           newXS_deffile("MyTest::bench_sv_payload_get", XS_MyTest_bench_sv_payload_get);
307 34           newXS_deffile("MyTest::throw_exception", XS_MyTest_throw_exception);
308 34           newXS_deffile("MyTest::throw_logic_error", XS_MyTest_throw_logic_error);
309 34           newXS_deffile("MyTest::throw_backtrace", XS_MyTest_throw_backtrace);
310 34           newXS_deffile("MyTest::test_leaks1", XS_MyTest_test_leaks1);
311              
312             /* Initialisation Section */
313              
314             #line 10 "t/MyTest.xs"
315             {
316             XS_BOOT(MyTest__Cookbook);
317             XS_BOOT(MyTest__Typemap);
318             }
319              
320             #line 321 "t/MyTest_xsgen.cc"
321              
322             /* End of Initialisation Section */
323              
324             #if PERL_VERSION_LE(5, 21, 5)
325             # if PERL_VERSION_GE(5, 9, 0)
326             if (PL_unitcheckav)
327             call_list(PL_scopestack_ix, PL_unitcheckav);
328             # endif
329             XSRETURN_YES;
330             #else
331 34           Perl_xs_boot_epilog(aTHX_ ax);
332             #endif
333 34 50         }); }
334