1 #define PERL_IN_XS_APITEST
7 typedef PTR_TBL_t *XS__APItest__PtrTable;
9 #define croak_fail() croak("fail at " __FILE__ " line %d", __LINE__)
10 #define croak_fail_ne(h, w) croak("fail %p!=%p at " __FILE__ " line %d", (h), (w), __LINE__)
12 /* for my_cxt tests */
14 #define MY_CXT_KEY "XS::APItest::_guts" XS_VERSION
32 /* indirect functions to test the [pa]MY_CXT macros */
35 my_cxt_getint_p(pMY_CXT)
41 my_cxt_setint_p(pMY_CXT_ int i)
47 my_cxt_getsv_interp_context(void)
50 dMY_CXT_INTERP(my_perl);
55 my_cxt_getsv_interp(void)
62 my_cxt_setsv_p(SV* sv _pMY_CXT)
68 /* from exception.c */
69 int apitest_exception(int);
71 /* from core_or_not.inc */
72 bool sv_setsv_cow_hashkey_core(void);
73 bool sv_setsv_cow_hashkey_notcore(void);
75 /* A routine to test hv_delayfree_ent
76 (which itself is tested by testing on hv_free_ent */
78 typedef void (freeent_function)(pTHX_ HV *, register HE *);
81 test_freeent(freeent_function *f) {
84 HV *test_hash = newHV();
91 victim = (HE*)safemalloc(sizeof(HE));
93 /* Storing then deleting something should ensure that a hash entry is
95 hv_store(test_hash, "", 0, &PL_sv_yes, 0);
96 hv_delete(test_hash, "", 0, 0);
98 /* We need to "inline" new_he here as it's static, and the functions we
99 test expect to be able to call del_HE on the HE */
100 if (!PL_body_roots[HE_SVSLOT])
101 croak("PL_he_root is 0");
102 victim = (HE*) PL_body_roots[HE_SVSLOT];
103 PL_body_roots[HE_SVSLOT] = HeNEXT(victim);
106 victim->hent_hek = Perl_share_hek(aTHX_ "", 0, 0);
108 test_scalar = newSV(0);
109 SvREFCNT_inc(test_scalar);
110 HeVAL(victim) = test_scalar;
112 /* Need this little game else we free the temps on the return stack. */
113 results[0] = SvREFCNT(test_scalar);
115 results[1] = SvREFCNT(test_scalar);
116 f(aTHX_ test_hash, victim);
117 results[2] = SvREFCNT(test_scalar);
119 results[3] = SvREFCNT(test_scalar);
124 } while (++i < sizeof(results)/sizeof(results[0]));
126 /* Goodbye to our extra reference. */
127 SvREFCNT_dec(test_scalar);
132 bitflip_key(pTHX_ IV action, SV *field) {
133 MAGIC *mg = mg_find(field, PERL_MAGIC_uvar);
135 if (mg && (keysv = mg->mg_obj)) {
137 const char *p = SvPV(keysv, len);
140 SV *newkey = newSV(len);
141 char *new_p = SvPVX(newkey);
144 const char *const end = p + len;
147 UV chr = utf8_to_uvuni((U8 *)p, &len);
148 new_p = (char *)uvuni_to_utf8((U8 *)new_p, chr ^ 32);
154 *new_p++ = *p++ ^ 32;
157 SvCUR_set(newkey, SvCUR(keysv));
167 rot13_key(pTHX_ IV action, SV *field) {
168 MAGIC *mg = mg_find(field, PERL_MAGIC_uvar);
170 if (mg && (keysv = mg->mg_obj)) {
172 const char *p = SvPV(keysv, len);
175 SV *newkey = newSV(len);
176 char *new_p = SvPVX(newkey);
178 /* There's a deliberate fencepost error here to loop len + 1 times
179 to copy the trailing \0 */
182 /* Try doing this cleanly and clearly in EBCDIC another way: */
184 case 'A': new_c = 'N'; break;
185 case 'B': new_c = 'O'; break;
186 case 'C': new_c = 'P'; break;
187 case 'D': new_c = 'Q'; break;
188 case 'E': new_c = 'R'; break;
189 case 'F': new_c = 'S'; break;
190 case 'G': new_c = 'T'; break;
191 case 'H': new_c = 'U'; break;
192 case 'I': new_c = 'V'; break;
193 case 'J': new_c = 'W'; break;
194 case 'K': new_c = 'X'; break;
195 case 'L': new_c = 'Y'; break;
196 case 'M': new_c = 'Z'; break;
197 case 'N': new_c = 'A'; break;
198 case 'O': new_c = 'B'; break;
199 case 'P': new_c = 'C'; break;
200 case 'Q': new_c = 'D'; break;
201 case 'R': new_c = 'E'; break;
202 case 'S': new_c = 'F'; break;
203 case 'T': new_c = 'G'; break;
204 case 'U': new_c = 'H'; break;
205 case 'V': new_c = 'I'; break;
206 case 'W': new_c = 'J'; break;
207 case 'X': new_c = 'K'; break;
208 case 'Y': new_c = 'L'; break;
209 case 'Z': new_c = 'M'; break;
210 case 'a': new_c = 'n'; break;
211 case 'b': new_c = 'o'; break;
212 case 'c': new_c = 'p'; break;
213 case 'd': new_c = 'q'; break;
214 case 'e': new_c = 'r'; break;
215 case 'f': new_c = 's'; break;
216 case 'g': new_c = 't'; break;
217 case 'h': new_c = 'u'; break;
218 case 'i': new_c = 'v'; break;
219 case 'j': new_c = 'w'; break;
220 case 'k': new_c = 'x'; break;
221 case 'l': new_c = 'y'; break;
222 case 'm': new_c = 'z'; break;
223 case 'n': new_c = 'a'; break;
224 case 'o': new_c = 'b'; break;
225 case 'p': new_c = 'c'; break;
226 case 'q': new_c = 'd'; break;
227 case 'r': new_c = 'e'; break;
228 case 's': new_c = 'f'; break;
229 case 't': new_c = 'g'; break;
230 case 'u': new_c = 'h'; break;
231 case 'v': new_c = 'i'; break;
232 case 'w': new_c = 'j'; break;
233 case 'x': new_c = 'k'; break;
234 case 'y': new_c = 'l'; break;
235 case 'z': new_c = 'm'; break;
239 SvCUR_set(newkey, SvCUR(keysv));
251 rmagical_a_dummy(pTHX_ IV idx, SV *sv) {
255 STATIC MGVTBL rmagical_b = { 0 };
258 blockhook_csc_start(pTHX_ int full)
261 AV *const cur = GvAV(MY_CXT.cscgv);
263 SAVEGENERICSV(GvAV(MY_CXT.cscgv));
267 AV *const new_av = newAV();
269 for (i = 0; i <= av_len(cur); i++) {
270 av_store(new_av, i, newSVsv(*av_fetch(cur, i, 0)));
273 GvAV(MY_CXT.cscgv) = new_av;
278 blockhook_csc_pre_end(pTHX_ OP **o)
282 /* if we hit the end of a scope we missed the start of, we need to
283 * unconditionally clear @CSC */
284 if (GvAV(MY_CXT.cscgv) == MY_CXT.cscav && MY_CXT.cscav) {
285 av_clear(MY_CXT.cscav);
291 blockhook_test_start(pTHX_ int full)
296 if (MY_CXT.bhk_record) {
298 av_push(av, newSVpvs("start"));
299 av_push(av, newSViv(full));
300 av_push(MY_CXT.bhkav, newRV_noinc(MUTABLE_SV(av)));
305 blockhook_test_pre_end(pTHX_ OP **o)
309 if (MY_CXT.bhk_record)
310 av_push(MY_CXT.bhkav, newSVpvs("pre_end"));
314 blockhook_test_post_end(pTHX_ OP **o)
318 if (MY_CXT.bhk_record)
319 av_push(MY_CXT.bhkav, newSVpvs("post_end"));
323 blockhook_test_eval(pTHX_ OP *const o)
328 if (MY_CXT.bhk_record) {
330 av_push(av, newSVpvs("eval"));
331 av_push(av, newSVpv(OP_NAME(o), 0));
332 av_push(MY_CXT.bhkav, newRV_noinc(MUTABLE_SV(av)));
336 STATIC BHK bhk_csc, bhk_test;
339 my_peep (pTHX_ OP *o)
346 MY_CXT.orig_peep(aTHX_ o);
348 if (!MY_CXT.peep_recording)
351 for (; o; o = o->op_next) {
352 if (o->op_type == OP_CONST && cSVOPx_sv(o) && SvPOK(cSVOPx_sv(o))) {
353 av_push(MY_CXT.peep_recorder, newSVsv(cSVOPx_sv(o)));
359 my_rpeep (pTHX_ OP *o)
366 MY_CXT.orig_rpeep(aTHX_ o);
368 if (!MY_CXT.peep_recording)
371 for (; o; o = o->op_next) {
372 if (o->op_type == OP_CONST && cSVOPx_sv(o) && SvPOK(cSVOPx_sv(o))) {
373 av_push(MY_CXT.rpeep_recorder, newSVsv(cSVOPx_sv(o)));
379 THX_ck_entersub_args_lists(pTHX_ OP *entersubop, GV *namegv, SV *ckobj)
381 return ck_entersub_args_list(entersubop);
385 THX_ck_entersub_args_scalars(pTHX_ OP *entersubop, GV *namegv, SV *ckobj)
387 OP *aop = cUNOPx(entersubop)->op_first;
388 if (!aop->op_sibling)
389 aop = cUNOPx(aop)->op_first;
390 for (aop = aop->op_sibling; aop->op_sibling; aop = aop->op_sibling) {
391 op_contextualize(aop, G_SCALAR);
397 THX_ck_entersub_multi_sum(pTHX_ OP *entersubop, GV *namegv, SV *ckobj)
400 OP *pushop = cUNOPx(entersubop)->op_first;
401 if (!pushop->op_sibling)
402 pushop = cUNOPx(pushop)->op_first;
404 OP *aop = pushop->op_sibling;
405 if (!aop->op_sibling)
407 pushop->op_sibling = aop->op_sibling;
408 aop->op_sibling = NULL;
409 op_contextualize(aop, G_SCALAR);
411 sumop = newBINOP(OP_ADD, 0, sumop, aop);
417 sumop = newSVOP(OP_CONST, 0, newSViv(0));
422 STATIC void test_op_list_describe_part(SV *res, OP *o);
424 test_op_list_describe_part(SV *res, OP *o)
426 sv_catpv(res, PL_op_name[o->op_type]);
427 switch (o->op_type) {
429 sv_catpvf(res, "(%d)", (int)SvIV(cSVOPx(o)->op_sv));
432 if (o->op_flags & OPf_KIDS) {
435 for (k = cUNOPx(o)->op_first; k; k = k->op_sibling)
436 test_op_list_describe_part(res, k);
444 test_op_list_describe(OP *o)
446 SV *res = sv_2mortal(newSVpvs(""));
448 test_op_list_describe_part(res, o);
452 /* the real new*OP functions have a tendancy to call fold_constants, and
453 * other such unhelpful things, so we need our own versions for testing */
455 #define mkUNOP(t, f) THX_mkUNOP(aTHX_ (t), (f))
457 THX_mkUNOP(pTHX_ U32 type, OP *first)
460 NewOp(1103, unop, 1, UNOP);
461 unop->op_type = (OPCODE)type;
462 unop->op_first = first;
463 unop->op_flags = OPf_KIDS;
467 #define mkBINOP(t, f, l) THX_mkBINOP(aTHX_ (t), (f), (l))
469 THX_mkBINOP(pTHX_ U32 type, OP *first, OP *last)
472 NewOp(1103, binop, 1, BINOP);
473 binop->op_type = (OPCODE)type;
474 binop->op_first = first;
475 binop->op_flags = OPf_KIDS;
476 binop->op_last = last;
477 first->op_sibling = last;
481 #define mkLISTOP(t, f, s, l) THX_mkLISTOP(aTHX_ (t), (f), (s), (l))
483 THX_mkLISTOP(pTHX_ U32 type, OP *first, OP *sib, OP *last)
486 NewOp(1103, listop, 1, LISTOP);
487 listop->op_type = (OPCODE)type;
488 listop->op_flags = OPf_KIDS;
489 listop->op_first = first;
490 first->op_sibling = sib;
491 sib->op_sibling = last;
492 listop->op_last = last;
497 test_op_linklist_describe(OP *start)
499 SV *rv = sv_2mortal(newSVpvs(""));
501 o = start = LINKLIST(start);
504 sv_catpv(rv, OP_NAME(o));
505 if (o->op_type == OP_CONST)
506 sv_catsv(rv, cSVOPo->op_sv);
508 } while (o && o != start);
512 /** RPN keyword parser **/
514 #define sv_is_glob(sv) (SvTYPE(sv) == SVt_PVGV)
515 #define sv_is_regexp(sv) (SvTYPE(sv) == SVt_REGEXP)
516 #define sv_is_string(sv) \
517 (!sv_is_glob(sv) && !sv_is_regexp(sv) && \
518 (SvFLAGS(sv) & (SVf_IOK|SVf_NOK|SVf_POK|SVp_IOK|SVp_NOK|SVp_POK)))
520 static SV *hintkey_rpn_sv, *hintkey_calcrpn_sv, *hintkey_stufftest_sv;
521 static SV *hintkey_swaptwostmts_sv, *hintkey_looprest_sv;
522 static SV *hintkey_scopelessblock_sv;
523 static SV *hintkey_stmtasexpr_sv, *hintkey_stmtsasexpr_sv;
524 static SV *hintkey_loopblock_sv, *hintkey_blockasexpr_sv;
525 static int (*next_keyword_plugin)(pTHX_ char *, STRLEN, OP **);
527 /* low-level parser helpers */
529 #define PL_bufptr (PL_parser->bufptr)
530 #define PL_bufend (PL_parser->bufend)
534 #define parse_var() THX_parse_var(aTHX)
535 static OP *THX_parse_var(pTHX)
541 if(*s != '$') croak("RPN syntax error");
544 if(!isALNUM(c)) break;
546 if(s-start < 2) croak("RPN syntax error");
549 /* because pad_findmy() doesn't really use length yet */
550 SV *namesv = sv_2mortal(newSVpvn(start, s-start));
551 varpos = pad_findmy(SvPVX(namesv), s-start, 0);
553 if(varpos == NOT_IN_PAD || PAD_COMPNAME_FLAGS_isOUR(varpos))
554 croak("RPN only supports \"my\" variables");
555 padop = newOP(OP_PADSV, 0);
556 padop->op_targ = varpos;
560 #define push_rpn_item(o) \
561 (tmpop = (o), tmpop->op_sibling = stack, stack = tmpop)
562 #define pop_rpn_item() \
563 (!stack ? (croak("RPN stack underflow"), (OP*)NULL) : \
564 (tmpop = stack, stack = stack->op_sibling, \
565 tmpop->op_sibling = NULL, tmpop))
567 #define parse_rpn_expr() THX_parse_rpn_expr(aTHX)
568 static OP *THX_parse_rpn_expr(pTHX)
570 OP *stack = NULL, *tmpop;
574 c = lex_peek_unichar(0);
576 case /*(*/')': case /*{*/'}': {
577 OP *result = pop_rpn_item();
578 if(stack) croak("RPN expression must return a single value");
581 case '0': case '1': case '2': case '3': case '4':
582 case '5': case '6': case '7': case '8': case '9': {
586 val = 10*val + (c - '0');
587 c = lex_peek_unichar(0);
588 } while(c >= '0' && c <= '9');
589 push_rpn_item(newSVOP(OP_CONST, 0, newSVuv(val)));
592 push_rpn_item(parse_var());
595 OP *b = pop_rpn_item();
596 OP *a = pop_rpn_item();
598 push_rpn_item(newBINOP(OP_I_ADD, 0, a, b));
601 OP *b = pop_rpn_item();
602 OP *a = pop_rpn_item();
604 push_rpn_item(newBINOP(OP_I_SUBTRACT, 0, a, b));
607 OP *b = pop_rpn_item();
608 OP *a = pop_rpn_item();
610 push_rpn_item(newBINOP(OP_I_MULTIPLY, 0, a, b));
613 OP *b = pop_rpn_item();
614 OP *a = pop_rpn_item();
616 push_rpn_item(newBINOP(OP_I_DIVIDE, 0, a, b));
619 OP *b = pop_rpn_item();
620 OP *a = pop_rpn_item();
622 push_rpn_item(newBINOP(OP_I_MODULO, 0, a, b));
625 croak("RPN syntax error");
631 #define parse_keyword_rpn() THX_parse_keyword_rpn(aTHX)
632 static OP *THX_parse_keyword_rpn(pTHX)
636 if(lex_peek_unichar(0) != '('/*)*/)
637 croak("RPN expression must be parenthesised");
639 op = parse_rpn_expr();
640 if(lex_peek_unichar(0) != /*(*/')')
641 croak("RPN expression must be parenthesised");
646 #define parse_keyword_calcrpn() THX_parse_keyword_calcrpn(aTHX)
647 static OP *THX_parse_keyword_calcrpn(pTHX)
653 if(lex_peek_unichar(0) != '{'/*}*/)
654 croak("RPN expression must be braced");
656 exprop = parse_rpn_expr();
657 if(lex_peek_unichar(0) != /*{*/'}')
658 croak("RPN expression must be braced");
660 return newASSIGNOP(OPf_STACKED, varop, 0, exprop);
663 #define parse_keyword_stufftest() THX_parse_keyword_stufftest(aTHX)
664 static OP *THX_parse_keyword_stufftest(pTHX)
669 do_stuff = lex_peek_unichar(0) == '+';
674 c = lex_peek_unichar(0);
677 } else if(c != /*{*/'}') {
678 croak("syntax error");
680 if(do_stuff) lex_stuff_pvs(" ", 0);
681 return newOP(OP_NULL, 0);
684 #define parse_keyword_swaptwostmts() THX_parse_keyword_swaptwostmts(aTHX)
685 static OP *THX_parse_keyword_swaptwostmts(pTHX)
688 a = parse_fullstmt(0);
689 b = parse_fullstmt(0);
691 PL_hints |= HINT_BLOCK_SCOPE;
692 return op_append_list(OP_LINESEQ, b, a);
695 #define parse_keyword_looprest() THX_parse_keyword_looprest(aTHX)
696 static OP *THX_parse_keyword_looprest(pTHX)
700 condline = CopLINE(PL_curcop);
701 body = parse_stmtseq(0);
702 return newWHILEOP(0, 1, NULL, condline, newSVOP(OP_CONST, 0, &PL_sv_yes),
706 #define parse_keyword_scopelessblock() THX_parse_keyword_scopelessblock(aTHX)
707 static OP *THX_parse_keyword_scopelessblock(pTHX)
712 if(lex_peek_unichar(0) != '{'/*}*/) croak("syntax error");
714 body = parse_stmtseq(0);
715 c = lex_peek_unichar(0);
716 if(c != /*{*/'}' && c != /*[*/']' && c != /*(*/')') croak("syntax error");
721 #define parse_keyword_stmtasexpr() THX_parse_keyword_stmtasexpr(aTHX)
722 static OP *THX_parse_keyword_stmtasexpr(pTHX)
724 OP *o = parse_fullstmt(0);
725 o = op_prepend_elem(OP_LINESEQ, newOP(OP_ENTER, 0), o);
726 o->op_type = OP_LEAVE;
727 o->op_ppaddr = PL_ppaddr[OP_LEAVE];
731 #define parse_keyword_stmtsasexpr() THX_parse_keyword_stmtsasexpr(aTHX)
732 static OP *THX_parse_keyword_stmtsasexpr(pTHX)
736 if(lex_peek_unichar(0) != '{'/*}*/) croak("syntax error");
738 o = parse_stmtseq(0);
740 if(lex_peek_unichar(0) != /*{*/'}') croak("syntax error");
742 o = op_prepend_elem(OP_LINESEQ, newOP(OP_ENTER, 0), o);
743 o->op_type = OP_LEAVE;
744 o->op_ppaddr = PL_ppaddr[OP_LEAVE];
748 #define parse_keyword_loopblock() THX_parse_keyword_loopblock(aTHX)
749 static OP *THX_parse_keyword_loopblock(pTHX)
753 condline = CopLINE(PL_curcop);
754 body = parse_block(0);
755 return newWHILEOP(0, 1, NULL, condline, newSVOP(OP_CONST, 0, &PL_sv_yes),
759 #define parse_keyword_blockasexpr() THX_parse_keyword_blockasexpr(aTHX)
760 static OP *THX_parse_keyword_blockasexpr(pTHX)
762 OP *o = parse_block(0);
763 o = op_prepend_elem(OP_LINESEQ, newOP(OP_ENTER, 0), o);
764 o->op_type = OP_LEAVE;
765 o->op_ppaddr = PL_ppaddr[OP_LEAVE];
771 #define keyword_active(hintkey_sv) THX_keyword_active(aTHX_ hintkey_sv)
772 static int THX_keyword_active(pTHX_ SV *hintkey_sv)
775 if(!GvHV(PL_hintgv)) return 0;
776 he = hv_fetch_ent(GvHV(PL_hintgv), hintkey_sv, 0,
777 SvSHARED_HASH(hintkey_sv));
778 return he && SvTRUE(HeVAL(he));
781 static int my_keyword_plugin(pTHX_
782 char *keyword_ptr, STRLEN keyword_len, OP **op_ptr)
784 if(keyword_len == 3 && strnEQ(keyword_ptr, "rpn", 3) &&
785 keyword_active(hintkey_rpn_sv)) {
786 *op_ptr = parse_keyword_rpn();
787 return KEYWORD_PLUGIN_EXPR;
788 } else if(keyword_len == 7 && strnEQ(keyword_ptr, "calcrpn", 7) &&
789 keyword_active(hintkey_calcrpn_sv)) {
790 *op_ptr = parse_keyword_calcrpn();
791 return KEYWORD_PLUGIN_STMT;
792 } else if(keyword_len == 9 && strnEQ(keyword_ptr, "stufftest", 9) &&
793 keyword_active(hintkey_stufftest_sv)) {
794 *op_ptr = parse_keyword_stufftest();
795 return KEYWORD_PLUGIN_STMT;
796 } else if(keyword_len == 12 &&
797 strnEQ(keyword_ptr, "swaptwostmts", 12) &&
798 keyword_active(hintkey_swaptwostmts_sv)) {
799 *op_ptr = parse_keyword_swaptwostmts();
800 return KEYWORD_PLUGIN_STMT;
801 } else if(keyword_len == 8 && strnEQ(keyword_ptr, "looprest", 8) &&
802 keyword_active(hintkey_looprest_sv)) {
803 *op_ptr = parse_keyword_looprest();
804 return KEYWORD_PLUGIN_STMT;
805 } else if(keyword_len == 14 && strnEQ(keyword_ptr, "scopelessblock", 14) &&
806 keyword_active(hintkey_scopelessblock_sv)) {
807 *op_ptr = parse_keyword_scopelessblock();
808 return KEYWORD_PLUGIN_STMT;
809 } else if(keyword_len == 10 && strnEQ(keyword_ptr, "stmtasexpr", 10) &&
810 keyword_active(hintkey_stmtasexpr_sv)) {
811 *op_ptr = parse_keyword_stmtasexpr();
812 return KEYWORD_PLUGIN_EXPR;
813 } else if(keyword_len == 11 && strnEQ(keyword_ptr, "stmtsasexpr", 11) &&
814 keyword_active(hintkey_stmtsasexpr_sv)) {
815 *op_ptr = parse_keyword_stmtsasexpr();
816 return KEYWORD_PLUGIN_EXPR;
817 } else if(keyword_len == 9 && strnEQ(keyword_ptr, "loopblock", 9) &&
818 keyword_active(hintkey_loopblock_sv)) {
819 *op_ptr = parse_keyword_loopblock();
820 return KEYWORD_PLUGIN_STMT;
821 } else if(keyword_len == 11 && strnEQ(keyword_ptr, "blockasexpr", 11) &&
822 keyword_active(hintkey_blockasexpr_sv)) {
823 *op_ptr = parse_keyword_blockasexpr();
824 return KEYWORD_PLUGIN_EXPR;
826 return next_keyword_plugin(aTHX_ keyword_ptr, keyword_len, op_ptr);
830 XS(XS_XS__APItest__XSUB_XS_VERSION_undef);
831 XS(XS_XS__APItest__XSUB_XS_VERSION_empty);
832 XS(XS_XS__APItest__XSUB_XS_APIVERSION_invalid);
834 #include "const-c.inc"
836 MODULE = XS::APItest PACKAGE = XS::APItest
838 INCLUDE: const-xs.inc
842 MODULE = XS::APItest PACKAGE = XS::APItest::XSUB
845 newXS("XS::APItest::XSUB::XS_VERSION_undef", XS_XS__APItest__XSUB_XS_VERSION_undef, __FILE__);
846 newXS("XS::APItest::XSUB::XS_VERSION_empty", XS_XS__APItest__XSUB_XS_VERSION_empty, __FILE__);
847 newXS("XS::APItest::XSUB::XS_APIVERSION_invalid", XS_XS__APItest__XSUB_XS_APIVERSION_invalid, __FILE__);
850 XS_VERSION_defined(...)
852 XS_VERSION_BOOTCHECK;
856 XS_APIVERSION_valid(...)
858 XS_APIVERSION_BOOTCHECK;
861 MODULE = XS::APItest:Hash PACKAGE = XS::APItest::Hash
869 uf.uf_val = rot13_key;
873 sv_magic((SV*)hash, NULL, PERL_MAGIC_uvar, (char*)&uf, sizeof(uf));
882 uf.uf_val = bitflip_key;
886 sv_magic((SV*)hash, NULL, PERL_MAGIC_uvar, (char*)&uf, sizeof(uf));
889 #define UTF8KLEN(sv, len) (SvUTF8(sv) ? -(I32)len : (I32)len)
900 key = SvPV(key_sv, len);
901 RETVAL = hv_exists(hash, key, UTF8KLEN(key_sv, len));
906 exists_ent(hash, key_sv)
912 RETVAL = hv_exists_ent(hash, key_sv, 0);
917 delete(hash, key_sv, flags = 0)
926 key = SvPV(key_sv, len);
927 /* It's already mortal, so need to increase reference count. */
929 = SvREFCNT_inc(hv_delete(hash, key, UTF8KLEN(key_sv, len), flags));
934 delete_ent(hash, key_sv, flags = 0)
940 /* It's already mortal, so need to increase reference count. */
941 RETVAL = SvREFCNT_inc(hv_delete_ent(hash, key_sv, flags, 0));
946 store_ent(hash, key, value)
956 result = hv_store_ent(hash, key, copy, 0);
957 SvSetMagicSV(copy, value);
962 /* It's about to become mortal, so need to increase reference count.
964 RETVAL = SvREFCNT_inc(HeVAL(result));
969 store(hash, key_sv, value)
980 key = SvPV(key_sv, len);
982 result = hv_store(hash, key, UTF8KLEN(key_sv, len), copy, 0);
983 SvSetMagicSV(copy, value);
988 /* It's about to become mortal, so need to increase reference count.
990 RETVAL = SvREFCNT_inc(*result);
995 fetch_ent(hash, key_sv)
1002 result = hv_fetch_ent(hash, key_sv, 0, 0);
1007 RETVAL = newSVsv(HeVAL(result));
1021 key = SvPV(key_sv, len);
1022 result = hv_fetch(hash, key, UTF8KLEN(key_sv, len), 0);
1027 RETVAL = newSVsv(*result);
1031 #if defined (hv_common)
1041 const char *key = NULL;
1049 if ((svp = hv_fetchs(params, "hv", 0))) {
1050 SV *const rv = *svp;
1052 croak("common passed a non-reference for parameter hv");
1053 hv = (HV *)SvRV(rv);
1055 if ((svp = hv_fetchs(params, "keysv", 0)))
1057 if ((svp = hv_fetchs(params, "keypv", 0))) {
1058 key = SvPV_const(*svp, klen);
1062 if ((svp = hv_fetchs(params, "action", 0)))
1063 action = SvIV(*svp);
1064 if ((svp = hv_fetchs(params, "val", 0)))
1065 val = newSVsv(*svp);
1066 if ((svp = hv_fetchs(params, "hash", 0)))
1069 if ((svp = hv_fetchs(params, "hash_pv", 0))) {
1070 PERL_HASH(hash, key, klen);
1072 if ((svp = hv_fetchs(params, "hash_sv", 0))) {
1074 const char *const p = SvPV(keysv, len);
1075 PERL_HASH(hash, p, len);
1078 result = (HE *)hv_common(hv, keysv, key, klen, flags, action, val, hash);
1083 RETVAL = newSVsv(HeVAL(result));
1092 test_freeent(&Perl_hv_free_ent);
1096 test_hv_delayfree_ent()
1098 test_freeent(&Perl_hv_delayfree_ent);
1102 test_share_unshare_pvn(input)
1111 pvx = SvPV(input, len);
1112 PERL_HASH(hash, pvx, len);
1113 p = sharepvn(pvx, len, hash);
1114 RETVAL = newSVpvn(p, len);
1115 unsharepvn(p, len, hash);
1119 #if PERL_VERSION >= 9
1122 refcounted_he_exists(key, level=0)
1127 croak("level must be zero, not %"IVdf, level);
1129 RETVAL = (cop_hints_fetch_sv(PL_curcop, key, 0, 0) != &PL_sv_placeholder);
1134 refcounted_he_fetch(key, level=0)
1139 croak("level must be zero, not %"IVdf, level);
1141 RETVAL = cop_hints_fetch_sv(PL_curcop, key, 0, 0);
1142 SvREFCNT_inc(RETVAL);
1150 sub TIEHASH { bless {}, $_[0] }
1151 sub STORE { $_[0]->{$_[1]} = $_[2] }
1152 sub FETCH { $_[0]->{$_[1]} }
1153 sub FIRSTKEY { my $a = scalar keys %{$_[0]}; each %{$_[0]} }
1154 sub NEXTKEY { each %{$_[0]} }
1155 sub EXISTS { exists $_[0]->{$_[1]} }
1156 sub DELETE { delete $_[0]->{$_[1]} }
1157 sub CLEAR { %{$_[0]} = () }
1161 MODULE = XS::APItest:TempLv PACKAGE = XS::APItest::TempLv
1167 SV * const lv = newSV_type(SVt_PVLV);
1172 sv_magic(lv, NULL, PERL_MAGIC_substr, NULL, 0);
1174 LvTARG(lv) = SvREFCNT_inc_simple(sv);
1175 LvTARGOFF(lv) = len == 0 ? 0 : 1;
1176 LvTARGLEN(lv) = len < 2 ? 0 : len-2;
1179 ST(0) = sv_2mortal(lv);
1183 MODULE = XS::APItest::PtrTable PACKAGE = XS::APItest::PtrTable PREFIX = ptr_table_
1186 ptr_table_new(classname)
1187 const char * classname
1189 PUSHs(sv_setref_pv(sv_newmortal(), classname, (void*)ptr_table_new()));
1193 XS::APItest::PtrTable table
1195 ptr_table_free(table);
1198 ptr_table_store(table, from, to)
1199 XS::APItest::PtrTable table
1203 ptr_table_store(table, from, to);
1206 ptr_table_fetch(table, from)
1207 XS::APItest::PtrTable table
1210 RETVAL = PTR2UV(ptr_table_fetch(table, from));
1215 ptr_table_split(table)
1216 XS::APItest::PtrTable table
1219 ptr_table_clear(table)
1220 XS::APItest::PtrTable table
1222 MODULE = XS::APItest PACKAGE = XS::APItest
1231 MY_CXT.sv = newSVpv("initial",0);
1233 MY_CXT.bhkav = get_av("XS::APItest::bhkav", GV_ADDMULTI);
1234 MY_CXT.bhk_record = 0;
1236 BhkENTRY_set(&bhk_test, bhk_start, blockhook_test_start);
1237 BhkENTRY_set(&bhk_test, bhk_pre_end, blockhook_test_pre_end);
1238 BhkENTRY_set(&bhk_test, bhk_post_end, blockhook_test_post_end);
1239 BhkENTRY_set(&bhk_test, bhk_eval, blockhook_test_eval);
1240 Perl_blockhook_register(aTHX_ &bhk_test);
1242 MY_CXT.cscgv = gv_fetchpvs("XS::APItest::COMPILE_SCOPE_CONTAINER",
1243 GV_ADDMULTI, SVt_PVAV);
1244 MY_CXT.cscav = GvAV(MY_CXT.cscgv);
1246 BhkENTRY_set(&bhk_csc, bhk_start, blockhook_csc_start);
1247 BhkENTRY_set(&bhk_csc, bhk_pre_end, blockhook_csc_pre_end);
1248 Perl_blockhook_register(aTHX_ &bhk_csc);
1250 MY_CXT.peep_recorder = newAV();
1251 MY_CXT.rpeep_recorder = newAV();
1253 MY_CXT.orig_peep = PL_peepp;
1254 MY_CXT.orig_rpeep = PL_rpeepp;
1256 PL_rpeepp = my_rpeep;
1263 MY_CXT.sv = newSVpv("initial_clone",0);
1264 MY_CXT.cscgv = gv_fetchpvs("XS::APItest::COMPILE_SCOPE_CONTAINER",
1265 GV_ADDMULTI, SVt_PVAV);
1266 MY_CXT.cscav = NULL;
1267 MY_CXT.bhkav = get_av("XS::APItest::bhkav", GV_ADDMULTI);
1268 MY_CXT.bhk_record = 0;
1269 MY_CXT.peep_recorder = newAV();
1270 MY_CXT.rpeep_recorder = newAV();
1276 printf("%5.3f\n",val);
1281 #ifdef HAS_LONG_DOUBLE
1292 #ifdef HAS_LONG_DOUBLE
1293 # if defined(PERL_PRIfldbl) && (LONG_DOUBLESIZE > DOUBLESIZE)
1294 long double val = 7.0;
1295 printf("%5.3" PERL_PRIfldbl "\n",val);
1298 printf("%5.3f\n",val);
1312 printf("%ld\n",val);
1318 printf("%5.3f\n",val);
1366 mXPUSHp("three", 5);
1395 call_sv(sv, flags, ...)
1401 for (i=0; i<items-2; i++)
1402 ST(i) = ST(i+2); /* pop first two args */
1406 i = call_sv(sv, flags);
1409 PUSHs(sv_2mortal(newSViv(i)));
1412 call_pv(subname, flags, ...)
1418 for (i=0; i<items-2; i++)
1419 ST(i) = ST(i+2); /* pop first two args */
1423 i = call_pv(subname, flags);
1426 PUSHs(sv_2mortal(newSViv(i)));
1429 call_method(methname, flags, ...)
1435 for (i=0; i<items-2; i++)
1436 ST(i) = ST(i+2); /* pop first two args */
1440 i = call_method(methname, flags);
1443 PUSHs(sv_2mortal(newSViv(i)));
1453 i = eval_sv(sv, flags);
1456 PUSHs(sv_2mortal(newSViv(i)));
1459 eval_pv(p, croak_on_error)
1465 PUSHs(eval_pv(p, croak_on_error));
1475 apitest_exception(throw_e)
1485 Perl_croak(aTHX_ "%s", SvPV_nolen(sv));
1488 Perl_croak(aTHX_ NULL);
1494 RETVAL = newRV_inc((SV*)PL_strtab);
1502 RETVAL = my_cxt_getint_p(aMY_CXT);
1511 my_cxt_setint_p(aMY_CXT_ i);
1518 ST(0) = how ? my_cxt_getsv_interp_context() : my_cxt_getsv_interp();
1526 SvREFCNT_dec(MY_CXT.sv);
1527 my_cxt_setsv_p(sv _aMY_CXT);
1531 sv_setsv_cow_hashkey_core()
1534 sv_setsv_cow_hashkey_notcore()
1537 rmagical_cast(sv, type)
1543 if (!SvOK(sv) || !SvROK(sv) || !SvOK(type)) { XSRETURN_UNDEF; }
1545 if (SvTYPE(sv) != SVt_PVHV) { XSRETURN_UNDEF; }
1546 uf.uf_val = rmagical_a_dummy;
1549 if (SvTRUE(type)) { /* b */
1550 sv_magicext(sv, NULL, PERL_MAGIC_ext, &rmagical_b, NULL, 0);
1552 sv_magic(sv, NULL, PERL_MAGIC_uvar, (char *) &uf, sizeof(uf));
1560 if (!SvOK(sv) || !SvROK(sv)) { XSRETURN_UNDEF; }
1563 mXPUSHu(SvFLAGS(sv) & SVs_GMG);
1564 mXPUSHu(SvFLAGS(sv) & SVs_SMG);
1565 mXPUSHu(SvFLAGS(sv) & SVs_RMG);
1572 const PERL_CONTEXT *cx, *dbcx;
1577 cx = caller_cx(level, &dbcx);
1580 pv = CopSTASHPV(cx->blk_oldcop);
1581 ST(0) = pv ? sv_2mortal(newSVpv(pv, 0)) : &PL_sv_undef;
1582 gv = CvGV(cx->blk_sub.cv);
1583 ST(1) = isGV(gv) ? sv_2mortal(newSVpv(GvNAME(gv), 0)) : &PL_sv_undef;
1585 pv = CopSTASHPV(dbcx->blk_oldcop);
1586 ST(2) = pv ? sv_2mortal(newSVpv(pv, 0)) : &PL_sv_undef;
1587 gv = CvGV(dbcx->blk_sub.cv);
1588 ST(3) = isGV(gv) ? sv_2mortal(newSVpv(GvNAME(gv), 0)) : &PL_sv_undef;
1590 ST(4) = cop_hints_fetch_pvs(cx->blk_oldcop, "foo", 0);
1591 ST(5) = cop_hints_fetch_pvn(cx->blk_oldcop, "foo", 3, 0, 0);
1592 ST(6) = cop_hints_fetch_sv(cx->blk_oldcop,
1593 sv_2mortal(newSVpvn("foo", 3)), 0, 0);
1595 hv = cop_hints_2hv(cx->blk_oldcop, 0);
1596 ST(7) = hv ? sv_2mortal(newRV_noinc((SV *)hv)) : &PL_sv_undef;
1605 ST (0) = newSVpv (Perl_sv_peek (aTHX_ sv), 0);
1611 sv_inc(get_sv("XS::APItest::BEGIN_called", GV_ADD|GV_ADDMULTI));
1616 sv_inc(get_sv("XS::APItest::CHECK_called", GV_ADD|GV_ADDMULTI));
1621 sv_inc(get_sv("XS::APItest::UNITCHECK_called", GV_ADD|GV_ADDMULTI));
1626 sv_inc(get_sv("XS::APItest::INIT_called", GV_ADD|GV_ADDMULTI));
1631 sv_inc(get_sv("XS::APItest::END_called", GV_ADD|GV_ADDMULTI));
1634 utf16_to_utf8 (sv, ...)
1637 utf16_to_utf8_reversed = 1
1642 I32 got; /* Gah, badly thought out APIs */
1644 source = (U8 *)SvPVbyte(sv, len);
1645 /* Optionally only convert part of the buffer. */
1649 /* Mortalise this right now, as we'll be testing croak()s */
1650 dest = sv_2mortal(newSV(len * 3 / 2 + 1));
1652 utf16_to_utf8_reversed(source, (U8 *)SvPVX(dest), len, &got);
1654 utf16_to_utf8(source, (U8 *)SvPVX(dest), len, &got);
1656 SvCUR_set(dest, got);
1657 SvPVX(dest)[got] = '\0';
1663 my_exit(int exitcode)
1670 RETVAL = PL_sv_count;
1678 MY_CXT.bhk_record = on;
1680 av_clear(MY_CXT.bhkav);
1686 MAGIC *callmg, *uvarmg;
1688 sv = sv_2mortal(newSV(0));
1689 if (SvTYPE(sv) >= SVt_PVMG) croak_fail();
1690 if (SvMAGICAL(sv)) croak_fail();
1691 sv_magic(sv, &PL_sv_yes, PERL_MAGIC_checkcall, (char*)&callmg, 0);
1692 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1693 if (!SvMAGICAL(sv)) croak_fail();
1694 if (mg_find(sv, PERL_MAGIC_uvar)) croak_fail();
1695 callmg = mg_find(sv, PERL_MAGIC_checkcall);
1696 if (!callmg) croak_fail();
1697 if (callmg->mg_obj != &PL_sv_yes || callmg->mg_ptr != (char*)&callmg)
1699 sv_magic(sv, &PL_sv_no, PERL_MAGIC_uvar, (char*)&uvarmg, 0);
1700 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1701 if (!SvMAGICAL(sv)) croak_fail();
1702 if (mg_find(sv, PERL_MAGIC_checkcall) != callmg) croak_fail();
1703 uvarmg = mg_find(sv, PERL_MAGIC_uvar);
1704 if (!uvarmg) croak_fail();
1705 if (callmg->mg_obj != &PL_sv_yes || callmg->mg_ptr != (char*)&callmg)
1707 if (uvarmg->mg_obj != &PL_sv_no || uvarmg->mg_ptr != (char*)&uvarmg)
1709 mg_free_type(sv, PERL_MAGIC_vec);
1710 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1711 if (!SvMAGICAL(sv)) croak_fail();
1712 if (mg_find(sv, PERL_MAGIC_checkcall) != callmg) croak_fail();
1713 if (mg_find(sv, PERL_MAGIC_uvar) != uvarmg) croak_fail();
1714 if (callmg->mg_obj != &PL_sv_yes || callmg->mg_ptr != (char*)&callmg)
1716 if (uvarmg->mg_obj != &PL_sv_no || uvarmg->mg_ptr != (char*)&uvarmg)
1718 mg_free_type(sv, PERL_MAGIC_uvar);
1719 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1720 if (!SvMAGICAL(sv)) croak_fail();
1721 if (mg_find(sv, PERL_MAGIC_checkcall) != callmg) croak_fail();
1722 if (mg_find(sv, PERL_MAGIC_uvar)) croak_fail();
1723 if (callmg->mg_obj != &PL_sv_yes || callmg->mg_ptr != (char*)&callmg)
1725 sv_magic(sv, &PL_sv_no, PERL_MAGIC_uvar, (char*)&uvarmg, 0);
1726 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1727 if (!SvMAGICAL(sv)) croak_fail();
1728 if (mg_find(sv, PERL_MAGIC_checkcall) != callmg) croak_fail();
1729 uvarmg = mg_find(sv, PERL_MAGIC_uvar);
1730 if (!uvarmg) croak_fail();
1731 if (callmg->mg_obj != &PL_sv_yes || callmg->mg_ptr != (char*)&callmg)
1733 if (uvarmg->mg_obj != &PL_sv_no || uvarmg->mg_ptr != (char*)&uvarmg)
1735 mg_free_type(sv, PERL_MAGIC_checkcall);
1736 if (SvTYPE(sv) < SVt_PVMG) croak_fail();
1737 if (!SvMAGICAL(sv)) croak_fail();
1738 if (mg_find(sv, PERL_MAGIC_uvar) != uvarmg) croak_fail();
1739 if (mg_find(sv, PERL_MAGIC_checkcall)) croak_fail();
1740 if (uvarmg->mg_obj != &PL_sv_no || uvarmg->mg_ptr != (char*)&uvarmg)
1742 mg_free_type(sv, PERL_MAGIC_uvar);
1743 if (SvMAGICAL(sv)) croak_fail();
1744 if (mg_find(sv, PERL_MAGIC_checkcall)) croak_fail();
1745 if (mg_find(sv, PERL_MAGIC_uvar)) croak_fail();
1748 test_op_contextualize()
1752 o = newSVOP(OP_CONST, 0, newSViv(0));
1753 o->op_flags &= ~OPf_WANT;
1754 o = op_contextualize(o, G_SCALAR);
1755 if (o->op_type != OP_CONST ||
1756 (o->op_flags & OPf_WANT) != OPf_WANT_SCALAR)
1759 o = newSVOP(OP_CONST, 0, newSViv(0));
1760 o->op_flags &= ~OPf_WANT;
1761 o = op_contextualize(o, G_ARRAY);
1762 if (o->op_type != OP_CONST ||
1763 (o->op_flags & OPf_WANT) != OPf_WANT_LIST)
1766 o = newSVOP(OP_CONST, 0, newSViv(0));
1767 o->op_flags &= ~OPf_WANT;
1768 o = op_contextualize(o, G_VOID);
1769 if (o->op_type != OP_NULL) croak_fail();
1776 GV *troc_gv, *wibble_gv;
1780 troc_gv = gv_fetchpv("XS::APItest::test_rv2cv_op_cv", 0, SVt_PVGV);
1781 troc_cv = get_cv("XS::APItest::test_rv2cv_op_cv", 0);
1782 wibble_gv = gv_fetchpv("XS::APItest::wibble", 0, SVt_PVGV);
1783 o = newCVREF(0, newGVOP(OP_GV, 0, troc_gv));
1784 if (rv2cv_op_cv(o, 0) != troc_cv) croak_fail();
1785 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV) != (CV*)troc_gv)
1787 o->op_private |= OPpENTERSUB_AMPER;
1788 if (rv2cv_op_cv(o, 0)) croak_fail();
1789 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1790 o->op_private &= ~OPpENTERSUB_AMPER;
1791 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1792 if (rv2cv_op_cv(o, RV2CVOPCV_MARK_EARLY) != troc_cv) croak_fail();
1793 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1795 o = newSVOP(OP_CONST, 0, newSVpv("XS::APItest::test_rv2cv_op_cv", 0));
1796 o->op_private = OPpCONST_BARE;
1798 if (rv2cv_op_cv(o, 0) != troc_cv) croak_fail();
1799 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV) != (CV*)troc_gv)
1801 o->op_private |= OPpENTERSUB_AMPER;
1802 if (rv2cv_op_cv(o, 0)) croak_fail();
1803 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1805 o = newCVREF(0, newSVOP(OP_CONST, 0, newRV_inc((SV*)troc_cv)));
1806 if (rv2cv_op_cv(o, 0) != troc_cv) croak_fail();
1807 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV) != (CV*)troc_gv)
1809 o->op_private |= OPpENTERSUB_AMPER;
1810 if (rv2cv_op_cv(o, 0)) croak_fail();
1811 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1812 o->op_private &= ~OPpENTERSUB_AMPER;
1813 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1814 if (rv2cv_op_cv(o, RV2CVOPCV_MARK_EARLY) != troc_cv) croak_fail();
1815 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1817 o = newCVREF(0, newUNOP(OP_RAND, 0, newSVOP(OP_CONST, 0, newSViv(0))));
1818 if (rv2cv_op_cv(o, 0)) croak_fail();
1819 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1820 o->op_private |= OPpENTERSUB_AMPER;
1821 if (rv2cv_op_cv(o, 0)) croak_fail();
1822 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1823 o->op_private &= ~OPpENTERSUB_AMPER;
1824 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1825 if (rv2cv_op_cv(o, RV2CVOPCV_MARK_EARLY)) croak_fail();
1826 if (cUNOPx(o)->op_first->op_private & OPpEARLY_CV) croak_fail();
1828 o = newUNOP(OP_RAND, 0, newSVOP(OP_CONST, 0, newSViv(0)));
1829 if (rv2cv_op_cv(o, 0)) croak_fail();
1830 if (rv2cv_op_cv(o, RV2CVOPCV_RETURN_NAME_GV)) croak_fail();
1834 test_cv_getset_call_checker()
1836 CV *troc_cv, *tsh_cv;
1837 Perl_call_checker ckfun;
1840 #define check_cc(cv, xckfun, xckobj) \
1842 cv_get_call_checker((cv), &ckfun, &ckobj); \
1843 if (ckfun != (xckfun)) croak_fail_ne(FPTR2DPTR(void *, ckfun), xckfun); \
1844 if (ckobj != (xckobj)) croak_fail_ne(FPTR2DPTR(void *, ckobj), xckobj); \
1846 troc_cv = get_cv("XS::APItest::test_rv2cv_op_cv", 0);
1847 tsh_cv = get_cv("XS::APItest::test_savehints", 0);
1848 check_cc(troc_cv, Perl_ck_entersub_args_proto_or_list, (SV*)troc_cv);
1849 check_cc(tsh_cv, Perl_ck_entersub_args_proto_or_list, (SV*)tsh_cv);
1850 cv_set_call_checker(tsh_cv, Perl_ck_entersub_args_proto_or_list,
1852 check_cc(troc_cv, Perl_ck_entersub_args_proto_or_list, (SV*)troc_cv);
1853 check_cc(tsh_cv, Perl_ck_entersub_args_proto_or_list, &PL_sv_yes);
1854 cv_set_call_checker(troc_cv, THX_ck_entersub_args_scalars, &PL_sv_no);
1855 check_cc(troc_cv, THX_ck_entersub_args_scalars, &PL_sv_no);
1856 check_cc(tsh_cv, Perl_ck_entersub_args_proto_or_list, &PL_sv_yes);
1857 cv_set_call_checker(tsh_cv, Perl_ck_entersub_args_proto_or_list,
1859 check_cc(troc_cv, THX_ck_entersub_args_scalars, &PL_sv_no);
1860 check_cc(tsh_cv, Perl_ck_entersub_args_proto_or_list, (SV*)tsh_cv);
1861 cv_set_call_checker(troc_cv, Perl_ck_entersub_args_proto_or_list,
1863 check_cc(troc_cv, Perl_ck_entersub_args_proto_or_list, (SV*)troc_cv);
1864 check_cc(tsh_cv, Perl_ck_entersub_args_proto_or_list, (SV*)tsh_cv);
1865 if (SvMAGICAL((SV*)troc_cv) || SvMAGIC((SV*)troc_cv)) croak_fail();
1866 if (SvMAGICAL((SV*)tsh_cv) || SvMAGIC((SV*)tsh_cv)) croak_fail();
1870 cv_set_call_checker_lists(CV *cv)
1872 cv_set_call_checker(cv, THX_ck_entersub_args_lists, &PL_sv_undef);
1875 cv_set_call_checker_scalars(CV *cv)
1877 cv_set_call_checker(cv, THX_ck_entersub_args_scalars, &PL_sv_undef);
1880 cv_set_call_checker_proto(CV *cv, SV *proto)
1883 proto = SvRV(proto);
1884 cv_set_call_checker(cv, Perl_ck_entersub_args_proto, proto);
1887 cv_set_call_checker_proto_or_list(CV *cv, SV *proto)
1890 proto = SvRV(proto);
1891 cv_set_call_checker(cv, Perl_ck_entersub_args_proto_or_list, proto);
1894 cv_set_call_checker_multi_sum(CV *cv)
1896 cv_set_call_checker(cv, THX_ck_entersub_multi_sum, &PL_sv_undef);
1903 #define check_ph(EXPR) \
1904 do { if((EXPR) != &PL_sv_placeholder) croak("fail"); } while(0)
1905 #define check_iv(EXPR, EXPECT) \
1906 do { if(SvIV(EXPR) != (EXPECT)) croak("fail"); } while(0)
1907 #define msvpvs(STR) sv_2mortal(newSVpvs(STR))
1908 #define msviv(VALUE) sv_2mortal(newSViv(VALUE))
1909 a = cophh_new_empty();
1910 check_ph(cophh_fetch_pvn(a, "foo_1", 5, 0, 0));
1911 check_ph(cophh_fetch_pvs(a, "foo_1", 0));
1912 check_ph(cophh_fetch_pv(a, "foo_1", 0, 0));
1913 check_ph(cophh_fetch_sv(a, msvpvs("foo_1"), 0, 0));
1914 a = cophh_store_pvn(a, "foo_1abc", 5, 0, msviv(111), 0);
1915 a = cophh_store_pvs(a, "foo_2", msviv(222), 0);
1916 a = cophh_store_pv(a, "foo_3", 0, msviv(333), 0);
1917 a = cophh_store_sv(a, msvpvs("foo_4"), 0, msviv(444), 0);
1918 check_iv(cophh_fetch_pvn(a, "foo_1xyz", 5, 0, 0), 111);
1919 check_iv(cophh_fetch_pvs(a, "foo_1", 0), 111);
1920 check_iv(cophh_fetch_pv(a, "foo_1", 0, 0), 111);
1921 check_iv(cophh_fetch_sv(a, msvpvs("foo_1"), 0, 0), 111);
1922 check_iv(cophh_fetch_pvs(a, "foo_2", 0), 222);
1923 check_iv(cophh_fetch_pvs(a, "foo_3", 0), 333);
1924 check_iv(cophh_fetch_pvs(a, "foo_4", 0), 444);
1925 check_ph(cophh_fetch_pvs(a, "foo_5", 0));
1927 b = cophh_store_pvs(b, "foo_1", msviv(1111), 0);
1928 check_iv(cophh_fetch_pvs(a, "foo_1", 0), 111);
1929 check_iv(cophh_fetch_pvs(a, "foo_2", 0), 222);
1930 check_iv(cophh_fetch_pvs(a, "foo_3", 0), 333);
1931 check_iv(cophh_fetch_pvs(a, "foo_4", 0), 444);
1932 check_ph(cophh_fetch_pvs(a, "foo_5", 0));
1933 check_iv(cophh_fetch_pvs(b, "foo_1", 0), 1111);
1934 check_iv(cophh_fetch_pvs(b, "foo_2", 0), 222);
1935 check_iv(cophh_fetch_pvs(b, "foo_3", 0), 333);
1936 check_iv(cophh_fetch_pvs(b, "foo_4", 0), 444);
1937 check_ph(cophh_fetch_pvs(b, "foo_5", 0));
1938 a = cophh_delete_pvn(a, "foo_1abc", 5, 0, 0);
1939 a = cophh_delete_pvs(a, "foo_2", 0);
1940 b = cophh_delete_pv(b, "foo_3", 0, 0);
1941 b = cophh_delete_sv(b, msvpvs("foo_4"), 0, 0);
1942 check_ph(cophh_fetch_pvs(a, "foo_1", 0));
1943 check_ph(cophh_fetch_pvs(a, "foo_2", 0));
1944 check_iv(cophh_fetch_pvs(a, "foo_3", 0), 333);
1945 check_iv(cophh_fetch_pvs(a, "foo_4", 0), 444);
1946 check_ph(cophh_fetch_pvs(a, "foo_5", 0));
1947 check_iv(cophh_fetch_pvs(b, "foo_1", 0), 1111);
1948 check_iv(cophh_fetch_pvs(b, "foo_2", 0), 222);
1949 check_ph(cophh_fetch_pvs(b, "foo_3", 0));
1950 check_ph(cophh_fetch_pvs(b, "foo_4", 0));
1951 check_ph(cophh_fetch_pvs(b, "foo_5", 0));
1952 b = cophh_delete_pvs(b, "foo_3", 0);
1953 b = cophh_delete_pvs(b, "foo_5", 0);
1954 check_iv(cophh_fetch_pvs(b, "foo_1", 0), 1111);
1955 check_iv(cophh_fetch_pvs(b, "foo_2", 0), 222);
1956 check_ph(cophh_fetch_pvs(b, "foo_3", 0));
1957 check_ph(cophh_fetch_pvs(b, "foo_4", 0));
1958 check_ph(cophh_fetch_pvs(b, "foo_5", 0));
1960 check_ph(cophh_fetch_pvs(a, "foo_1", 0));
1961 check_ph(cophh_fetch_pvs(a, "foo_2", 0));
1962 check_iv(cophh_fetch_pvs(a, "foo_3", 0), 333);
1963 check_iv(cophh_fetch_pvs(a, "foo_4", 0), 444);
1964 check_ph(cophh_fetch_pvs(a, "foo_5", 0));
1965 a = cophh_store_pvs(a, "foo_1", msviv(11111), COPHH_KEY_UTF8);
1966 a = cophh_store_pvs(a, "foo_\xaa", msviv(123), 0);
1967 a = cophh_store_pvs(a, "foo_\xc2\xbb", msviv(456), COPHH_KEY_UTF8);
1968 a = cophh_store_pvs(a, "foo_\xc3\x8c", msviv(789), COPHH_KEY_UTF8);
1969 a = cophh_store_pvs(a, "foo_\xd9\xa6", msviv(666), COPHH_KEY_UTF8);
1970 check_iv(cophh_fetch_pvs(a, "foo_1", 0), 11111);
1971 check_iv(cophh_fetch_pvs(a, "foo_1", COPHH_KEY_UTF8), 11111);
1972 check_iv(cophh_fetch_pvs(a, "foo_\xaa", 0), 123);
1973 check_iv(cophh_fetch_pvs(a, "foo_\xc2\xaa", COPHH_KEY_UTF8), 123);
1974 check_ph(cophh_fetch_pvs(a, "foo_\xc2\xaa", 0));
1975 check_iv(cophh_fetch_pvs(a, "foo_\xbb", 0), 456);
1976 check_iv(cophh_fetch_pvs(a, "foo_\xc2\xbb", COPHH_KEY_UTF8), 456);
1977 check_ph(cophh_fetch_pvs(a, "foo_\xc2\xbb", 0));
1978 check_iv(cophh_fetch_pvs(a, "foo_\xcc", 0), 789);
1979 check_iv(cophh_fetch_pvs(a, "foo_\xc3\x8c", COPHH_KEY_UTF8), 789);
1980 check_ph(cophh_fetch_pvs(a, "foo_\xc2\x8c", 0));
1981 check_iv(cophh_fetch_pvs(a, "foo_\xd9\xa6", COPHH_KEY_UTF8), 666);
1982 check_ph(cophh_fetch_pvs(a, "foo_\xd9\xa6", 0));
1994 #define msviv(VALUE) sv_2mortal(newSViv(VALUE))
1995 a = cophh_new_empty();
1996 a = cophh_store_pvs(a, "foo_0", msviv(999), 0);
1997 a = cophh_store_pvs(a, "foo_1", msviv(111), 0);
1998 a = cophh_store_pvs(a, "foo_\xaa", msviv(123), 0);
1999 a = cophh_store_pvs(a, "foo_\xc2\xbb", msviv(456), COPHH_KEY_UTF8);
2000 a = cophh_store_pvs(a, "foo_\xc3\x8c", msviv(789), COPHH_KEY_UTF8);
2001 a = cophh_store_pvs(a, "foo_\xd9\xa6", msviv(666), COPHH_KEY_UTF8);
2002 a = cophh_delete_pvs(a, "foo_0", 0);
2003 a = cophh_delete_pvs(a, "foo_2", 0);
2004 RETVAL = cophh_2hv(a, 0);
2015 #define store_hint(KEY, VALUE) \
2016 sv_setiv_mg(*hv_fetchs(GvHV(PL_hintgv), KEY, 1), (VALUE))
2017 #define hint_ok(KEY, EXPECT) \
2018 ((svp = hv_fetchs(GvHV(PL_hintgv), KEY, 0)) && \
2019 (sv = *svp) && SvIV(sv) == (EXPECT) && \
2020 (sv = cop_hints_fetch_pvs(&PL_compiling, KEY, 0)) && \
2021 SvIV(sv) == (EXPECT))
2022 #define check_hint(KEY, EXPECT) \
2023 do { if (!hint_ok(KEY, EXPECT)) croak_fail(); } while(0)
2024 PL_hints |= HINT_LOCALIZE_HH;
2027 PL_hints &= HINT_INTEGER;
2028 store_hint("t0", 123);
2029 store_hint("t1", 456);
2030 if (PL_hints & HINT_INTEGER) croak_fail();
2031 check_hint("t0", 123); check_hint("t1", 456);
2034 if (PL_hints & HINT_INTEGER) croak_fail();
2035 check_hint("t0", 123); check_hint("t1", 456);
2036 PL_hints |= HINT_INTEGER;
2037 store_hint("t0", 321);
2038 if (!(PL_hints & HINT_INTEGER)) croak_fail();
2039 check_hint("t0", 321); check_hint("t1", 456);
2041 if (PL_hints & HINT_INTEGER) croak_fail();
2042 check_hint("t0", 123); check_hint("t1", 456);
2045 if (PL_hints & HINT_INTEGER) croak_fail();
2046 check_hint("t0", 123); check_hint("t1", 456);
2047 store_hint("t1", 654);
2048 if (PL_hints & HINT_INTEGER) croak_fail();
2049 check_hint("t0", 123); check_hint("t1", 654);
2051 if (PL_hints & HINT_INTEGER) croak_fail();
2052 check_hint("t0", 123); check_hint("t1", 456);
2063 PL_hints |= HINT_LOCALIZE_HH;
2066 sv_setiv_mg(*hv_fetchs(GvHV(PL_hintgv), "t0", 1), 123);
2067 if (SvIV(cop_hints_fetch_pvs(&PL_compiling, "t0", 0)) != 123)
2069 a = newHVhv(GvHV(PL_hintgv));
2071 sv_setiv_mg(*hv_fetchs(a, "t0", 1), 456);
2072 if (SvIV(cop_hints_fetch_pvs(&PL_compiling, "t0", 0)) != 123)
2074 b = hv_copy_hints_hv(a);
2076 sv_setiv_mg(*hv_fetchs(b, "t0", 1), 789);
2077 if (SvIV(cop_hints_fetch_pvs(&PL_compiling, "t0", 0)) != 789)
2086 #define iv_op(iv) newSVOP(OP_CONST, 0, newSViv(iv))
2087 #define check_op(o, expect) \
2089 if (strcmp(test_op_list_describe(o), (expect))) \
2090 croak("fail %s %s", test_op_list_describe(o), (expect)); \
2092 a = op_append_elem(OP_LIST, NULL, NULL);
2094 a = op_append_elem(OP_LIST, iv_op(1), a);
2095 check_op(a, "const(1).");
2096 a = op_append_elem(OP_LIST, NULL, a);
2097 check_op(a, "const(1).");
2098 a = op_append_elem(OP_LIST, a, iv_op(2));
2099 check_op(a, "list[pushmark.const(1).const(2).]");
2100 a = op_append_elem(OP_LIST, a, iv_op(3));
2101 check_op(a, "list[pushmark.const(1).const(2).const(3).]");
2102 a = op_append_elem(OP_LIST, a, NULL);
2103 check_op(a, "list[pushmark.const(1).const(2).const(3).]");
2104 a = op_append_elem(OP_LIST, NULL, a);
2105 check_op(a, "list[pushmark.const(1).const(2).const(3).]");
2106 a = op_append_elem(OP_LIST, iv_op(4), a);
2107 check_op(a, "list[pushmark.const(4)."
2108 "list[pushmark.const(1).const(2).const(3).]]");
2109 a = op_append_elem(OP_LIST, a, iv_op(5));
2110 check_op(a, "list[pushmark.const(4)."
2111 "list[pushmark.const(1).const(2).const(3).]const(5).]");
2112 a = op_append_elem(OP_LIST, a,
2113 op_append_elem(OP_LIST, iv_op(7), iv_op(6)));
2114 check_op(a, "list[pushmark.const(4)."
2115 "list[pushmark.const(1).const(2).const(3).]const(5)."
2116 "list[pushmark.const(7).const(6).]]");
2118 a = op_append_elem(OP_LINESEQ, iv_op(1), iv_op(2));
2119 check_op(a, "lineseq[const(1).const(2).]");
2120 a = op_append_elem(OP_LINESEQ, a, iv_op(3));
2121 check_op(a, "lineseq[const(1).const(2).const(3).]");
2123 a = op_append_elem(OP_LINESEQ,
2124 op_append_elem(OP_LIST, iv_op(1), iv_op(2)),
2126 check_op(a, "lineseq[list[pushmark.const(1).const(2).]const(3).]");
2128 a = op_prepend_elem(OP_LIST, NULL, NULL);
2130 a = op_prepend_elem(OP_LIST, a, iv_op(1));
2131 check_op(a, "const(1).");
2132 a = op_prepend_elem(OP_LIST, a, NULL);
2133 check_op(a, "const(1).");
2134 a = op_prepend_elem(OP_LIST, iv_op(2), a);
2135 check_op(a, "list[pushmark.const(2).const(1).]");
2136 a = op_prepend_elem(OP_LIST, iv_op(3), a);
2137 check_op(a, "list[pushmark.const(3).const(2).const(1).]");
2138 a = op_prepend_elem(OP_LIST, NULL, a);
2139 check_op(a, "list[pushmark.const(3).const(2).const(1).]");
2140 a = op_prepend_elem(OP_LIST, a, NULL);
2141 check_op(a, "list[pushmark.const(3).const(2).const(1).]");
2142 a = op_prepend_elem(OP_LIST, a, iv_op(4));
2143 check_op(a, "list[pushmark."
2144 "list[pushmark.const(3).const(2).const(1).]const(4).]");
2145 a = op_prepend_elem(OP_LIST, iv_op(5), a);
2146 check_op(a, "list[pushmark.const(5)."
2147 "list[pushmark.const(3).const(2).const(1).]const(4).]");
2148 a = op_prepend_elem(OP_LIST,
2149 op_prepend_elem(OP_LIST, iv_op(6), iv_op(7)), a);
2150 check_op(a, "list[pushmark.list[pushmark.const(6).const(7).]const(5)."
2151 "list[pushmark.const(3).const(2).const(1).]const(4).]");
2153 a = op_prepend_elem(OP_LINESEQ, iv_op(2), iv_op(1));
2154 check_op(a, "lineseq[const(2).const(1).]");
2155 a = op_prepend_elem(OP_LINESEQ, iv_op(3), a);
2156 check_op(a, "lineseq[const(3).const(2).const(1).]");
2158 a = op_prepend_elem(OP_LINESEQ, iv_op(3),
2159 op_prepend_elem(OP_LIST, iv_op(2), iv_op(1)));
2160 check_op(a, "lineseq[const(3).list[pushmark.const(2).const(1).]]");
2162 a = op_append_list(OP_LINESEQ, NULL, NULL);
2164 a = op_append_list(OP_LINESEQ, iv_op(1), a);
2165 check_op(a, "const(1).");
2166 a = op_append_list(OP_LINESEQ, NULL, a);
2167 check_op(a, "const(1).");
2168 a = op_append_list(OP_LINESEQ, a, iv_op(2));
2169 check_op(a, "lineseq[const(1).const(2).]");
2170 a = op_append_list(OP_LINESEQ, a, iv_op(3));
2171 check_op(a, "lineseq[const(1).const(2).const(3).]");
2172 a = op_append_list(OP_LINESEQ, iv_op(4), a);
2173 check_op(a, "lineseq[const(4).const(1).const(2).const(3).]");
2174 a = op_append_list(OP_LINESEQ, a, NULL);
2175 check_op(a, "lineseq[const(4).const(1).const(2).const(3).]");
2176 a = op_append_list(OP_LINESEQ, NULL, a);
2177 check_op(a, "lineseq[const(4).const(1).const(2).const(3).]");
2178 a = op_append_list(OP_LINESEQ, a,
2179 op_append_list(OP_LINESEQ, iv_op(5), iv_op(6)));
2180 check_op(a, "lineseq[const(4).const(1).const(2).const(3)."
2181 "const(5).const(6).]");
2183 a = op_append_list(OP_LINESEQ,
2184 op_append_list(OP_LINESEQ, iv_op(1), iv_op(2)),
2185 op_append_list(OP_LIST, iv_op(3), iv_op(4)));
2186 check_op(a, "lineseq[const(1).const(2)."
2187 "list[pushmark.const(3).const(4).]]");
2189 a = op_append_list(OP_LINESEQ,
2190 op_append_list(OP_LIST, iv_op(1), iv_op(2)),
2191 op_append_list(OP_LINESEQ, iv_op(3), iv_op(4)));
2192 check_op(a, "lineseq[list[pushmark.const(1).const(2).]"
2193 "const(3).const(4).]");
2202 #define check_ll(o, expect) \
2204 if (strNE(test_op_linklist_describe(o), (expect))) \
2205 croak("fail %s %s", test_op_linklist_describe(o), (expect)); \
2208 check_ll(o, ".const1");
2211 o = mkUNOP(OP_NOT, iv_op(1));
2212 check_ll(o, ".const1.not");
2215 o = mkUNOP(OP_NOT, mkUNOP(OP_NEGATE, iv_op(1)));
2216 check_ll(o, ".const1.negate.not");
2219 o = mkBINOP(OP_ADD, iv_op(1), iv_op(2));
2220 check_ll(o, ".const1.const2.add");
2223 o = mkBINOP(OP_ADD, mkUNOP(OP_NOT, iv_op(1)), iv_op(2));
2224 check_ll(o, ".const1.not.const2.add");
2227 o = mkUNOP(OP_NOT, mkBINOP(OP_ADD, iv_op(1), iv_op(2)));
2228 check_ll(o, ".const1.const2.add.not");
2231 o = mkLISTOP(OP_LINESEQ, iv_op(1), iv_op(2), iv_op(3));
2232 check_ll(o, ".const1.const2.const3.lineseq");
2235 o = mkLISTOP(OP_LINESEQ,
2236 mkBINOP(OP_ADD, iv_op(1), iv_op(2)),
2237 mkUNOP(OP_NOT, iv_op(3)),
2238 mkLISTOP(OP_SUBSTR, iv_op(4), iv_op(5), iv_op(6)));
2239 check_ll(o, ".const1.const2.add.const3.not"
2240 ".const4.const5.const6.substr.lineseq");
2243 o = mkBINOP(OP_ADD, iv_op(1), iv_op(2));
2245 o = mkBINOP(OP_SUBTRACT, o, iv_op(3));
2246 check_ll(o, ".const1.const2.add.const3.subtract");
2256 av_clear(MY_CXT.peep_recorder);
2257 av_clear(MY_CXT.rpeep_recorder);
2258 MY_CXT.peep_recording = 1;
2265 MY_CXT.peep_recording = 0;
2272 RETVAL = newRV_inc((SV *)MY_CXT.peep_recorder);
2281 RETVAL = newRV_inc((SV *)MY_CXT.rpeep_recorder);
2287 multicall_each: call a sub for each item in the list. Used to test MULTICALL
2292 multicall_each(block,...)
2301 I32 gimme = G_SCALAR;
2302 SV **args = &PL_stack_base[ax];
2308 cv = sv_2cv(block, &stash, &gv, 0);
2310 croak("multicall_each: not a subroutine reference");
2313 SAVESPTR(GvSV(PL_defgv));
2315 for(index = 1 ; index < items ; index++) {
2316 GvSV(PL_defgv) = args[index];
2329 stash = gv_stashpv("XS::APItest::TempLv", 0);
2331 meth = hv_fetchs(stash, "make_temp_mg_lv", 0);
2333 croak("lost method 'make_temp_mg_lv'");
2340 hintkey_rpn_sv = newSVpvs_share("XS::APItest/rpn");
2341 hintkey_calcrpn_sv = newSVpvs_share("XS::APItest/calcrpn");
2342 hintkey_stufftest_sv = newSVpvs_share("XS::APItest/stufftest");
2343 hintkey_swaptwostmts_sv = newSVpvs_share("XS::APItest/swaptwostmts");
2344 hintkey_looprest_sv = newSVpvs_share("XS::APItest/looprest");
2345 hintkey_scopelessblock_sv = newSVpvs_share("XS::APItest/scopelessblock");
2346 hintkey_stmtasexpr_sv = newSVpvs_share("XS::APItest/stmtasexpr");
2347 hintkey_stmtsasexpr_sv = newSVpvs_share("XS::APItest/stmtsasexpr");
2348 hintkey_loopblock_sv = newSVpvs_share("XS::APItest/loopblock");
2349 hintkey_blockasexpr_sv = newSVpvs_share("XS::APItest/blockasexpr");
2350 next_keyword_plugin = PL_keyword_plugin;
2351 PL_keyword_plugin = my_keyword_plugin;