1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
|
/* mathoms.c
*
* Copyright (C) 2005, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*
*/
/*
* "Anything that Hobbits had no immediate use for, but were unwilling to
* throw away, they called a mathom. Their dwellings were apt to become
* rather crowded with mathoms, and many of the presents that passed from
* hand to hand were of that sort."
*/
/*
* This file contains mathoms, various binary artifacts from previous
* versions of Perl. For binary or source compatibility reasons, though,
* we cannot completely remove them from the core code.
*
* SMP - Oct. 24, 2005
*
*/
#include "EXTERN.h"
#define PERL_IN_MATHOMS_C
#include "perl.h"
/* ref() is now a macro using Perl_doref;
* this version provided for binary compatibility only.
*/
OP *
Perl_ref(pTHX_ OP *o, I32 type)
{
return doref(o, type, TRUE);
}
/*
=for apidoc sv_unref
Unsets the RV status of the SV, and decrements the reference count of
whatever was being referenced by the RV. This can almost be thought of
as a reversal of C<newSVrv>. This is C<sv_unref_flags> with the C<flag>
being zero. See C<SvROK_off>.
=cut
*/
void
Perl_sv_unref(pTHX_ SV *sv)
{
sv_unref_flags(sv, 0);
}
/*
=for apidoc sv_taint
Taint an SV. Use C<SvTAINTED_on> instead.
=cut
*/
void
Perl_sv_taint(pTHX_ SV *sv)
{
sv_magic((sv), Nullsv, PERL_MAGIC_taint, Nullch, 0);
}
/* sv_2iv() is now a macro using Perl_sv_2iv_flags();
* this function provided for binary compatibility only
*/
IV
Perl_sv_2iv(pTHX_ register SV *sv)
{
return sv_2iv_flags(sv, SV_GMAGIC);
}
/* sv_2uv() is now a macro using Perl_sv_2uv_flags();
* this function provided for binary compatibility only
*/
UV
Perl_sv_2uv(pTHX_ register SV *sv)
{
return sv_2uv_flags(sv, SV_GMAGIC);
}
/* sv_2pv() is now a macro using Perl_sv_2pv_flags();
* this function provided for binary compatibility only
*/
char *
Perl_sv_2pv(pTHX_ register SV *sv, STRLEN *lp)
{
return sv_2pv_flags(sv, lp, SV_GMAGIC);
}
/*
=for apidoc sv_2pv_nolen
Like C<sv_2pv()>, but doesn't return the length too. You should usually
use the macro wrapper C<SvPV_nolen(sv)> instead.
=cut
*/
char *
Perl_sv_2pv_nolen(pTHX_ register SV *sv)
{
return sv_2pv(sv, 0);
}
/*
=for apidoc sv_2pvbyte_nolen
Return a pointer to the byte-encoded representation of the SV.
May cause the SV to be downgraded from UTF-8 as a side-effect.
Usually accessed via the C<SvPVbyte_nolen> macro.
=cut
*/
char *
Perl_sv_2pvbyte_nolen(pTHX_ register SV *sv)
{
return sv_2pvbyte(sv, 0);
}
/*
=for apidoc sv_2pvutf8_nolen
Return a pointer to the UTF-8-encoded representation of the SV.
May cause the SV to be upgraded to UTF-8 as a side-effect.
Usually accessed via the C<SvPVutf8_nolen> macro.
=cut
*/
char *
Perl_sv_2pvutf8_nolen(pTHX_ register SV *sv)
{
return sv_2pvutf8(sv, 0);
}
/*
=for apidoc sv_force_normal
Undo various types of fakery on an SV: if the PV is a shared string, make
a private copy; if we're a ref, stop refing; if we're a glob, downgrade to
an xpvmg. See also C<sv_force_normal_flags>.
=cut
*/
void
Perl_sv_force_normal(pTHX_ register SV *sv)
{
sv_force_normal_flags(sv, 0);
}
/* sv_setsv() is now a macro using Perl_sv_setsv_flags();
* this function provided for binary compatibility only
*/
void
Perl_sv_setsv(pTHX_ SV *dstr, register SV *sstr)
{
sv_setsv_flags(dstr, sstr, SV_GMAGIC);
}
/* sv_catpvn() is now a macro using Perl_sv_catpvn_flags();
* this function provided for binary compatibility only
*/
void
Perl_sv_catpvn(pTHX_ SV *dsv, const char* sstr, STRLEN slen)
{
sv_catpvn_flags(dsv, sstr, slen, SV_GMAGIC);
}
/*
=for apidoc sv_catpvn_mg
Like C<sv_catpvn>, but also handles 'set' magic.
=cut
*/
void
Perl_sv_catpvn_mg(pTHX_ register SV *sv, register const char *ptr, register STRLEN len)
{
sv_catpvn_flags(sv,ptr,len,SV_GMAGIC|SV_SMAGIC);
}
/* sv_catsv() is now a macro using Perl_sv_catsv_flags();
* this function provided for binary compatibility only
*/
void
Perl_sv_catsv(pTHX_ SV *dstr, register SV *sstr)
{
sv_catsv_flags(dstr, sstr, SV_GMAGIC);
}
/*
=for apidoc sv_catsv_mg
Like C<sv_catsv>, but also handles 'set' magic.
=cut
*/
void
Perl_sv_catsv_mg(pTHX_ SV *dsv, register SV *ssv)
{
sv_catsv_flags(dsv,ssv,SV_GMAGIC|SV_SMAGIC);
}
/*
=for apidoc sv_iv
A private implementation of the C<SvIVx> macro for compilers which can't
cope with complex macro expressions. Always use the macro instead.
=cut
*/
IV
Perl_sv_iv(pTHX_ register SV *sv)
{
if (SvIOK(sv)) {
if (SvIsUV(sv))
return (IV)SvUVX(sv);
return SvIVX(sv);
}
return sv_2iv(sv);
}
/*
=for apidoc sv_uv
A private implementation of the C<SvUVx> macro for compilers which can't
cope with complex macro expressions. Always use the macro instead.
=cut
*/
UV
Perl_sv_uv(pTHX_ register SV *sv)
{
if (SvIOK(sv)) {
if (SvIsUV(sv))
return SvUVX(sv);
return (UV)SvIVX(sv);
}
return sv_2uv(sv);
}
/*
=for apidoc sv_nv
A private implementation of the C<SvNVx> macro for compilers which can't
cope with complex macro expressions. Always use the macro instead.
=cut
*/
NV
Perl_sv_nv(pTHX_ register SV *sv)
{
if (SvNOK(sv))
return SvNVX(sv);
return sv_2nv(sv);
}
/*
=for apidoc sv_pv
Use the C<SvPV_nolen> macro instead
=for apidoc sv_pvn
A private implementation of the C<SvPV> macro for compilers which can't
cope with complex macro expressions. Always use the macro instead.
=cut
*/
char *
Perl_sv_pvn(pTHX_ SV *sv, STRLEN *lp)
{
if (SvPOK(sv)) {
*lp = SvCUR(sv);
return SvPVX(sv);
}
return sv_2pv(sv, lp);
}
char *
Perl_sv_pvn_nomg(pTHX_ register SV *sv, STRLEN *lp)
{
if (SvPOK(sv)) {
*lp = SvCUR(sv);
return SvPVX(sv);
}
return sv_2pv_flags(sv, lp, 0);
}
/* sv_pv() is now a macro using SvPV_nolen();
* this function provided for binary compatibility only
*/
char *
Perl_sv_pv(pTHX_ SV *sv)
{
if (SvPOK(sv))
return SvPVX(sv);
return sv_2pv(sv, 0);
}
/* sv_pvn_force() is now a macro using Perl_sv_pvn_force_flags();
* this function provided for binary compatibility only
*/
char *
Perl_sv_pvn_force(pTHX_ SV *sv, STRLEN *lp)
{
return sv_pvn_force_flags(sv, lp, SV_GMAGIC);
}
/* sv_pvbyte () is now a macro using Perl_sv_2pv_flags();
* this function provided for binary compatibility only
*/
char *
Perl_sv_pvbyte(pTHX_ SV *sv)
{
sv_utf8_downgrade(sv,0);
return sv_pv(sv);
}
/*
=for apidoc sv_pvbyte
Use C<SvPVbyte_nolen> instead.
=for apidoc sv_pvbyten
A private implementation of the C<SvPVbyte> macro for compilers
which can't cope with complex macro expressions. Always use the macro
instead.
=cut
*/
char *
Perl_sv_pvbyten(pTHX_ SV *sv, STRLEN *lp)
{
sv_utf8_downgrade(sv,0);
return sv_pvn(sv,lp);
}
/* sv_pvutf8 () is now a macro using Perl_sv_2pv_flags();
* this function provided for binary compatibility only
*/
char *
Perl_sv_pvutf8(pTHX_ SV *sv)
{
sv_utf8_upgrade(sv);
return sv_pv(sv);
}
/*
=for apidoc sv_pvutf8
Use the C<SvPVutf8_nolen> macro instead
=for apidoc sv_pvutf8n
A private implementation of the C<SvPVutf8> macro for compilers
which can't cope with complex macro expressions. Always use the macro
instead.
=cut
*/
char *
Perl_sv_pvutf8n(pTHX_ SV *sv, STRLEN *lp)
{
sv_utf8_upgrade(sv);
return sv_pvn(sv,lp);
}
/* sv_utf8_upgrade() is now a macro using sv_utf8_upgrade_flags();
* this function provided for binary compatibility only
*/
STRLEN
Perl_sv_utf8_upgrade(pTHX_ register SV *sv)
{
return sv_utf8_upgrade_flags(sv, SV_GMAGIC);
}
/*
=for apidoc A|U8 *|uvchr_to_utf8|U8 *d|UV uv
Adds the UTF-8 representation of the Native codepoint C<uv> to the end
of the string C<d>; C<d> should be have at least C<UTF8_MAXBYTES+1> free
bytes available. The return value is the pointer to the byte after the
end of the new character. In other words,
d = uvchr_to_utf8(d, uv);
is the recommended wide native character-aware way of saying
*(d++) = uv;
=cut
*/
/* On ASCII machines this is normally a macro but we want a
real function in case XS code wants it
*/
#undef Perl_uvchr_to_utf8
U8 *
Perl_uvchr_to_utf8(pTHX_ U8 *d, UV uv)
{
return Perl_uvuni_to_utf8_flags(aTHX_ d, NATIVE_TO_UNI(uv), 0);
}
/*
=for apidoc A|UV|utf8n_to_uvchr|U8 *s|STRLEN curlen|STRLEN *retlen|U32
flags
Returns the native character value of the first character in the string
C<s>
which is assumed to be in UTF-8 encoding; C<retlen> will be set to the
length, in bytes, of that character.
Allows length and flags to be passed to low level routine.
=cut
*/
/* On ASCII machines this is normally a macro but we want
a real function in case XS code wants it
*/
#undef Perl_utf8n_to_uvchr
UV
Perl_utf8n_to_uvchr(pTHX_ const U8 *s, STRLEN curlen, STRLEN *retlen,
U32 flags)
{
const UV uv = Perl_utf8n_to_uvuni(aTHX_ s, curlen, retlen, flags);
return UNI_TO_NATIVE(uv);
}
int
Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...)
{
dTHXs;
va_list(arglist);
va_start(arglist, format);
return PerlIO_vprintf(stream, format, arglist);
}
int
Perl_printf_nocontext(const char *format, ...)
{
dTHX;
va_list(arglist);
va_start(arglist, format);
return PerlIO_vprintf(PerlIO_stdout(), format, arglist);
}
#if defined(HUGE_VAL) || (defined(USE_LONG_DOUBLE) && defined(HUGE_VALL))
/*
* This hack is to force load of "huge" support from libm.a
* So it is in perl for (say) POSIX to use.
* Needed for SunOS with Sun's 'acc' for example.
*/
NV
Perl_huge(void)
{
# if defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
return HUGE_VALL;
# endif
return HUGE_VAL;
}
#endif
#ifndef USE_SFIO
int
perlsio_binmode(FILE *fp, int iotype, int mode)
{
/*
* This used to be contents of do_binmode in doio.c
*/
#ifdef DOSISH
# if defined(atarist) || defined(__MINT__)
if (!fflush(fp)) {
if (mode & O_BINARY)
((FILE *) fp)->_flag |= _IOBIN;
else
((FILE *) fp)->_flag &= ~_IOBIN;
return 1;
}
return 0;
# else
dTHX;
#ifdef NETWARE
if (PerlLIO_setmode(fp, mode) != -1) {
#else
if (PerlLIO_setmode(fileno(fp), mode) != -1) {
#endif
# if defined(WIN32) && defined(__BORLANDC__)
/*
* The translation mode of the stream is maintained independent
of
* the translation mode of the fd in the Borland RTL (heavy
* digging through their runtime sources reveal). User has to
set
* the mode explicitly for the stream (though they don't
document
* this anywhere). GSAR 97-5-24
*/
fseek(fp, 0L, 0);
if (mode & O_BINARY)
fp->flags |= _F_BIN;
else
fp->flags &= ~_F_BIN;
# endif
return 1;
}
else
return 0;
# endif
#else
# if defined(USEMYBINMODE)
dTHX;
if (my_binmode(fp, iotype, mode) != FALSE)
return 1;
else
return 0;
# else
PERL_UNUSED_ARG(fp);
PERL_UNUSED_ARG(iotype);
PERL_UNUSED_ARG(mode);
return 1;
# endif
#endif
}
#endif /* sfio */
/* compatibility with versions <= 5.003. */
void
Perl_gv_fullname(pTHX_ SV *sv, const GV *gv)
{
gv_fullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
}
/* compatibility with versions <= 5.003. */
void
Perl_gv_efullname(pTHX_ SV *sv, const GV *gv)
{
gv_efullname3(sv, gv, sv == (const SV*)gv ? "*" : "");
}
void
Perl_gv_fullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
{
gv_fullname4(sv, gv, prefix, TRUE);
}
void
Perl_gv_efullname3(pTHX_ SV *sv, const GV *gv, const char *prefix)
{
gv_efullname4(sv, gv, prefix, TRUE);
}
/*
=for apidoc gv_fetchmethod
See L<gv_fetchmethod_autoload>.
=cut
*/
GV *
Perl_gv_fetchmethod(pTHX_ HV *stash, const char *name)
{
return gv_fetchmethod_autoload(stash, name, TRUE);
}
HE *
Perl_hv_iternext(pTHX_ HV *hv)
{
return hv_iternext_flags(hv, 0);
}
void
Perl_hv_magic(pTHX_ HV *hv, GV *gv, int how)
{
sv_magic((SV*)hv, (SV*)gv, how, Nullch, 0);
}
#if 0 /* use the macro from hv.h instead */
char*
Perl_sharepvn(pTHX_ const char *sv, I32 len, U32 hash)
{
return HEK_KEY(share_hek(sv, len, hash));
}
#endif
AV *
Perl_av_fake(pTHX_ register I32 size, register SV **strp)
{
register SV** ary;
register AV * const av = (AV*)NEWSV(9,0);
sv_upgrade((SV *)av, SVt_PVAV);
Newx(ary,size+1,SV*);
AvALLOC(av) = ary;
Copy(strp,ary,size,SV*);
AvREIFY_only(av);
SvPV_set(av, (char*)ary);
AvFILLp(av) = size - 1;
AvMAX(av) = size - 1;
while (size--) {
assert (*strp);
SvTEMP_off(*strp);
strp++;
}
return av;
}
bool
Perl_do_open(pTHX_ GV *gv, register const char *name, I32 len, int as_raw,
int rawmode, int rawperm, PerlIO *supplied_fp)
{
return do_openn(gv, name, len, as_raw, rawmode, rawperm,
supplied_fp, (SV **) NULL, 0);
}
bool
Perl_do_open9(pTHX_ GV *gv, register const char *name, I32 len, int
as_raw,
int rawmode, int rawperm, PerlIO *supplied_fp, SV *svs,
I32 num_svs)
{
PERL_UNUSED_ARG(num_svs);
return do_openn(gv, name, len, as_raw, rawmode, rawperm,
supplied_fp, &svs, 1);
}
int
Perl_do_binmode(pTHX_ PerlIO *fp, int iotype, int mode)
{
/* The old body of this is now in non-LAYER part of perlio.c
* This is a stub for any XS code which might have been calling it.
*/
const char *name = ":raw";
#ifdef PERLIO_USING_CRLF
if (!(mode & O_BINARY))
name = ":crlf";
#endif
return PerlIO_binmode(aTHX_ fp, iotype, mode, name);
}
#ifndef OS2
bool
Perl_do_aexec(pTHX_ SV *really, register SV **mark, register SV **sp)
{
return do_aexec5(really, mark, sp, 0, 0);
}
#endif
#ifdef PERL_DEFAULT_DO_EXEC3_IMPLEMENTATION
bool
Perl_do_exec(pTHX_ const char *cmd)
{
return do_exec3(cmd,0,0);
}
#endif
#ifdef HAS_PIPE
void
Perl_do_pipe(pTHX_ SV *sv, GV *rgv, GV *wgv)
{
register IO *rstio;
register IO *wstio;
int fd[2];
if (!rgv)
goto badexit;
if (!wgv)
goto badexit;
rstio = GvIOn(rgv);
wstio = GvIOn(wgv);
if (IoIFP(rstio))
do_close(rgv,FALSE);
if (IoIFP(wstio))
do_close(wgv,FALSE);
if (PerlProc_pipe(fd) < 0)
goto badexit;
IoIFP(rstio) = PerlIO_fdopen(fd[0], "r"PIPE_OPEN_MODE);
IoOFP(wstio) = PerlIO_fdopen(fd[1], "w"PIPE_OPEN_MODE);
IoOFP(rstio) = IoIFP(rstio);
IoIFP(wstio) = IoOFP(wstio);
IoTYPE(rstio) = IoTYPE_RDONLY;
IoTYPE(wstio) = IoTYPE_WRONLY;
if (!IoIFP(rstio) || !IoOFP(wstio)) {
if (IoIFP(rstio)) PerlIO_close(IoIFP(rstio));
else PerlLIO_close(fd[0]);
if (IoOFP(wstio)) PerlIO_close(IoOFP(wstio));
else PerlLIO_close(fd[1]);
goto badexit;
}
sv_setsv(sv,&PL_sv_yes);
return;
badexit:
sv_setsv(sv,&PL_sv_undef);
return;
}
#endif
/*
* Local variables:
* c-indentation-style: bsd
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*
* ex: set ts=8 sts=4 sw=4 noet:
*/
|