1PERLINTERP(1)          Perl Programmers Reference Guide          PERLINTERP(1)
2
3
4

NAME

6       perlinterp - An overview of the Perl interpreter
7

DESCRIPTION

9       This document provides an overview of how the Perl interpreter works at
10       the level of C code, along with pointers to the relevant C source code
11       files.
12

ELEMENTS OF THE INTERPRETER

14       The work of the interpreter has two main stages: compiling the code
15       into the internal representation, or bytecode, and then executing it.
16       "Compiled code" in perlguts explains exactly how the compilation stage
17       happens.
18
19       Here is a short breakdown of perl's operation:
20
21   Startup
22       The action begins in perlmain.c. (or miniperlmain.c for miniperl) This
23       is very high-level code, enough to fit on a single screen, and it
24       resembles the code found in perlembed; most of the real action takes
25       place in perl.c
26
27       perlmain.c is generated by "ExtUtils::Miniperl" from miniperlmain.c at
28       make time, so you should make perl to follow this along.
29
30       First, perlmain.c allocates some memory and constructs a Perl
31       interpreter, along these lines:
32
33           1 PERL_SYS_INIT3(&argc,&argv,&env);
34           2
35           3 if (!PL_do_undump) {
36           4     my_perl = perl_alloc();
37           5     if (!my_perl)
38           6         exit(1);
39           7     perl_construct(my_perl);
40           8     PL_perl_destruct_level = 0;
41           9 }
42
43       Line 1 is a macro, and its definition is dependent on your operating
44       system. Line 3 references "PL_do_undump", a global variable - all
45       global variables in Perl start with "PL_". This tells you whether the
46       current running program was created with the "-u" flag to perl and then
47       undump, which means it's going to be false in any sane context.
48
49       Line 4 calls a function in perl.c to allocate memory for a Perl
50       interpreter. It's quite a simple function, and the guts of it looks
51       like this:
52
53        my_perl = (PerlInterpreter*)PerlMem_malloc(sizeof(PerlInterpreter));
54
55       Here you see an example of Perl's system abstraction, which we'll see
56       later: "PerlMem_malloc" is either your system's "malloc", or Perl's own
57       "malloc" as defined in malloc.c if you selected that option at
58       configure time.
59
60       Next, in line 7, we construct the interpreter using perl_construct,
61       also in perl.c; this sets up all the special variables that Perl needs,
62       the stacks, and so on.
63
64       Now we pass Perl the command line options, and tell it to go:
65
66        if (!perl_parse(my_perl, xs_init, argc, argv, (char **)NULL))
67            perl_run(my_perl);
68
69        exitstatus = perl_destruct(my_perl);
70
71        perl_free(my_perl);
72
73       "perl_parse" is actually a wrapper around "S_parse_body", as defined in
74       perl.c, which processes the command line options, sets up any
75       statically linked XS modules, opens the program and calls "yyparse" to
76       parse it.
77
78   Parsing
79       The aim of this stage is to take the Perl source, and turn it into an
80       op tree. We'll see what one of those looks like later. Strictly
81       speaking, there's three things going on here.
82
83       "yyparse", the parser, lives in perly.c, although you're better off
84       reading the original YACC input in perly.y. (Yes, Virginia, there is a
85       YACC grammar for Perl!) The job of the parser is to take your code and
86       "understand" it, splitting it into sentences, deciding which operands
87       go with which operators and so on.
88
89       The parser is nobly assisted by the lexer, which chunks up your input
90       into tokens, and decides what type of thing each token is: a variable
91       name, an operator, a bareword, a subroutine, a core function, and so
92       on. The main point of entry to the lexer is "yylex", and that and its
93       associated routines can be found in toke.c. Perl isn't much like other
94       computer languages; it's highly context sensitive at times, it can be
95       tricky to work out what sort of token something is, or where a token
96       ends. As such, there's a lot of interplay between the tokeniser and the
97       parser, which can get pretty frightening if you're not used to it.
98
99       As the parser understands a Perl program, it builds up a tree of
100       operations for the interpreter to perform during execution. The
101       routines which construct and link together the various operations are
102       to be found in op.c, and will be examined later.
103
104   Optimization
105       Now the parsing stage is complete, and the finished tree represents the
106       operations that the Perl interpreter needs to perform to execute our
107       program. Next, Perl does a dry run over the tree looking for
108       optimisations: constant expressions such as "3 + 4" will be computed
109       now, and the optimizer will also see if any multiple operations can be
110       replaced with a single one. For instance, to fetch the variable $foo,
111       instead of grabbing the glob *foo and looking at the scalar component,
112       the optimizer fiddles the op tree to use a function which directly
113       looks up the scalar in question. The main optimizer is "peep" in op.c,
114       and many ops have their own optimizing functions.
115
116   Running
117       Now we're finally ready to go: we have compiled Perl byte code, and all
118       that's left to do is run it. The actual execution is done by the
119       "runops_standard" function in run.c; more specifically, it's done by
120       these three innocent looking lines:
121
122           while ((PL_op = PL_op->op_ppaddr(aTHX))) {
123               PERL_ASYNC_CHECK();
124           }
125
126       You may be more comfortable with the Perl version of that:
127
128           PERL_ASYNC_CHECK() while $Perl::op = &{$Perl::op->{function}};
129
130       Well, maybe not. Anyway, each op contains a function pointer, which
131       stipulates the function which will actually carry out the operation.
132       This function will return the next op in the sequence - this allows for
133       things like "if" which choose the next op dynamically at run time. The
134       "PERL_ASYNC_CHECK" makes sure that things like signals interrupt
135       execution if required.
136
137       The actual functions called are known as PP code, and they're spread
138       between four files: pp_hot.c contains the "hot" code, which is most
139       often used and highly optimized, pp_sys.c contains all the system-
140       specific functions, pp_ctl.c contains the functions which implement
141       control structures ("if", "while" and the like) and pp.c contains
142       everything else. These are, if you like, the C code for Perl's built-in
143       functions and operators.
144
145       Note that each "pp_" function is expected to return a pointer to the
146       next op. Calls to perl subs (and eval blocks) are handled within the
147       same runops loop, and do not consume extra space on the C stack. For
148       example, "pp_entersub" and "pp_entertry" just push a "CxSUB" or
149       "CxEVAL" block struct onto the context stack which contain the address
150       of the op following the sub call or eval. They then return the first op
151       of that sub or eval block, and so execution continues of that sub or
152       block. Later, a "pp_leavesub" or "pp_leavetry" op pops the "CxSUB" or
153       "CxEVAL", retrieves the return op from it, and returns it.
154
155   Exception handing
156       Perl's exception handing (i.e. "die" etc.) is built on top of the low-
157       level "setjmp()"/"longjmp()" C-library functions. These basically
158       provide a way to capture the current PC and SP registers and later
159       restore them; i.e. a "longjmp()" continues at the point in code where a
160       previous "setjmp()" was done, with anything further up on the C stack
161       being lost. This is why code should always save values using "SAVE_FOO"
162       rather than in auto variables.
163
164       The perl core wraps "setjmp()" etc in the macros "JMPENV_PUSH" and
165       "JMPENV_JUMP". The basic rule of perl exceptions is that "exit", and
166       "die" (in the absence of "eval") perform a JMPENV_JUMP(2), while "die"
167       within "eval" does a JMPENV_JUMP(3).
168
169       At entry points to perl, such as "perl_parse()", "perl_run()" and
170       "call_sv(cv, G_EVAL)" each does a "JMPENV_PUSH", then enter a runops
171       loop or whatever, and handle possible exception returns. For a 2
172       return, final cleanup is performed, such as popping stacks and calling
173       "CHECK" or "END" blocks. Amongst other things, this is how scope
174       cleanup still occurs during an "exit".
175
176       If a "die" can find a "CxEVAL" block on the context stack, then the
177       stack is popped to that level and the return op in that block is
178       assigned to "PL_restartop"; then a JMPENV_JUMP(3) is performed.  This
179       normally passes control back to the guard. In the case of "perl_run"
180       and "call_sv", a non-null "PL_restartop" triggers re-entry to the
181       runops loop. The is the normal way that "die" or "croak" is handled
182       within an "eval".
183
184       Sometimes ops are executed within an inner runops loop, such as tie,
185       sort or overload code. In this case, something like
186
187           sub FETCH { eval { die } }
188
189       would cause a longjmp right back to the guard in "perl_run", popping
190       both runops loops, which is clearly incorrect. One way to avoid this is
191       for the tie code to do a "JMPENV_PUSH" before executing "FETCH" in the
192       inner runops loop, but for efficiency reasons, perl in fact just sets a
193       flag, using "CATCH_SET(TRUE)". The "pp_require", "pp_entereval" and
194       "pp_entertry" ops check this flag, and if true, they call "docatch",
195       which does a "JMPENV_PUSH" and starts a new runops level to execute the
196       code, rather than doing it on the current loop.
197
198       As a further optimisation, on exit from the eval block in the "FETCH",
199       execution of the code following the block is still carried on in the
200       inner loop. When an exception is raised, "docatch" compares the
201       "JMPENV" level of the "CxEVAL" with "PL_top_env" and if they differ,
202       just re-throws the exception. In this way any inner loops get popped.
203
204       Here's an example.
205
206           1: eval { tie @a, 'A' };
207           2: sub A::TIEARRAY {
208           3:     eval { die };
209           4:     die;
210           5: }
211
212       To run this code, "perl_run" is called, which does a "JMPENV_PUSH" then
213       enters a runops loop. This loop executes the eval and tie ops on line
214       1, with the eval pushing a "CxEVAL" onto the context stack.
215
216       The "pp_tie" does a "CATCH_SET(TRUE)", then starts a second runops loop
217       to execute the body of "TIEARRAY". When it executes the entertry op on
218       line 3, "CATCH_GET" is true, so "pp_entertry" calls "docatch" which
219       does a "JMPENV_PUSH" and starts a third runops loop, which then
220       executes the die op. At this point the C call stack looks like this:
221
222           Perl_pp_die
223           Perl_runops      # third loop
224           S_docatch_body
225           S_docatch
226           Perl_pp_entertry
227           Perl_runops      # second loop
228           S_call_body
229           Perl_call_sv
230           Perl_pp_tie
231           Perl_runops      # first loop
232           S_run_body
233           perl_run
234           main
235
236       and the context and data stacks, as shown by "-Dstv", look like:
237
238           STACK 0: MAIN
239             CX 0: BLOCK  =>
240             CX 1: EVAL   => AV()  PV("A"\0)
241             retop=leave
242           STACK 1: MAGIC
243             CX 0: SUB    =>
244             retop=(null)
245             CX 1: EVAL   => *
246           retop=nextstate
247
248       The die pops the first "CxEVAL" off the context stack, sets
249       "PL_restartop" from it, does a JMPENV_JUMP(3), and control returns to
250       the top "docatch". This then starts another third-level runops level,
251       which executes the nextstate, pushmark and die ops on line 4. At the
252       point that the second "pp_die" is called, the C call stack looks
253       exactly like that above, even though we are no longer within an inner
254       eval; this is because of the optimization mentioned earlier. However,
255       the context stack now looks like this, ie with the top CxEVAL popped:
256
257           STACK 0: MAIN
258             CX 0: BLOCK  =>
259             CX 1: EVAL   => AV()  PV("A"\0)
260             retop=leave
261           STACK 1: MAGIC
262             CX 0: SUB    =>
263             retop=(null)
264
265       The die on line 4 pops the context stack back down to the CxEVAL,
266       leaving it as:
267
268           STACK 0: MAIN
269             CX 0: BLOCK  =>
270
271       As usual, "PL_restartop" is extracted from the "CxEVAL", and a
272       JMPENV_JUMP(3) done, which pops the C stack back to the docatch:
273
274           S_docatch
275           Perl_pp_entertry
276           Perl_runops      # second loop
277           S_call_body
278           Perl_call_sv
279           Perl_pp_tie
280           Perl_runops      # first loop
281           S_run_body
282           perl_run
283           main
284
285       In  this case, because the "JMPENV" level recorded in the "CxEVAL"
286       differs from the current one, "docatch" just does a JMPENV_JUMP(3) and
287       the C stack unwinds to:
288
289           perl_run
290           main
291
292       Because "PL_restartop" is non-null, "run_body" starts a new runops loop
293       and execution continues.
294
295   INTERNAL VARIABLE TYPES
296       You should by now have had a look at perlguts, which tells you about
297       Perl's internal variable types: SVs, HVs, AVs and the rest. If not, do
298       that now.
299
300       These variables are used not only to represent Perl-space variables,
301       but also any constants in the code, as well as some structures
302       completely internal to Perl. The symbol table, for instance, is an
303       ordinary Perl hash. Your code is represented by an SV as it's read into
304       the parser; any program files you call are opened via ordinary Perl
305       filehandles, and so on.
306
307       The core Devel::Peek module lets us examine SVs from a Perl program.
308       Let's see, for instance, how Perl treats the constant "hello".
309
310             % perl -MDevel::Peek -e 'Dump("hello")'
311           1 SV = PV(0xa041450) at 0xa04ecbc
312           2   REFCNT = 1
313           3   FLAGS = (POK,READONLY,pPOK)
314           4   PV = 0xa0484e0 "hello"\0
315           5   CUR = 5
316           6   LEN = 6
317
318       Reading "Devel::Peek" output takes a bit of practise, so let's go
319       through it line by line.
320
321       Line 1 tells us we're looking at an SV which lives at 0xa04ecbc in
322       memory. SVs themselves are very simple structures, but they contain a
323       pointer to a more complex structure. In this case, it's a PV, a
324       structure which holds a string value, at location 0xa041450. Line 2 is
325       the reference count; there are no other references to this data, so
326       it's 1.
327
328       Line 3 are the flags for this SV - it's OK to use it as a PV, it's a
329       read-only SV (because it's a constant) and the data is a PV internally.
330       Next we've got the contents of the string, starting at location
331       0xa0484e0.
332
333       Line 5 gives us the current length of the string - note that this does
334       not include the null terminator. Line 6 is not the length of the
335       string, but the length of the currently allocated buffer; as the string
336       grows, Perl automatically extends the available storage via a routine
337       called "SvGROW".
338
339       You can get at any of these quantities from C very easily; just add
340       "Sv" to the name of the field shown in the snippet, and you've got a
341       macro which will return the value: "SvCUR(sv)" returns the current
342       length of the string, "SvREFCOUNT(sv)" returns the reference count,
343       "SvPV(sv, len)" returns the string itself with its length, and so on.
344       More macros to manipulate these properties can be found in perlguts.
345
346       Let's take an example of manipulating a PV, from "sv_catpvn", in sv.c
347
348            1  void
349            2  Perl_sv_catpvn(pTHX_ SV *sv, const char *ptr, STRLEN len)
350            3  {
351            4      STRLEN tlen;
352            5      char *junk;
353
354            6      junk = SvPV_force(sv, tlen);
355            7      SvGROW(sv, tlen + len + 1);
356            8      if (ptr == junk)
357            9          ptr = SvPVX(sv);
358           10      Move(ptr,SvPVX(sv)+tlen,len,char);
359           11      SvCUR(sv) += len;
360           12      *SvEND(sv) = '\0';
361           13      (void)SvPOK_only_UTF8(sv);          /* validate pointer */
362           14      SvTAINT(sv);
363           15  }
364
365       This is a function which adds a string, "ptr", of length "len" onto the
366       end of the PV stored in "sv". The first thing we do in line 6 is make
367       sure that the SV has a valid PV, by calling the "SvPV_force" macro to
368       force a PV. As a side effect, "tlen" gets set to the current value of
369       the PV, and the PV itself is returned to "junk".
370
371       In line 7, we make sure that the SV will have enough room to
372       accommodate the old string, the new string and the null terminator. If
373       "LEN" isn't big enough, "SvGROW" will reallocate space for us.
374
375       Now, if "junk" is the same as the string we're trying to add, we can
376       grab the string directly from the SV; "SvPVX" is the address of the PV
377       in the SV.
378
379       Line 10 does the actual catenation: the "Move" macro moves a chunk of
380       memory around: we move the string "ptr" to the end of the PV - that's
381       the start of the PV plus its current length. We're moving "len" bytes
382       of type "char". After doing so, we need to tell Perl we've extended the
383       string, by altering "CUR" to reflect the new length. "SvEND" is a macro
384       which gives us the end of the string, so that needs to be a "\0".
385
386       Line 13 manipulates the flags; since we've changed the PV, any IV or NV
387       values will no longer be valid: if we have "$a=10; $a.="6";" we don't
388       want to use the old IV of 10. "SvPOK_only_utf8" is a special
389       UTF-8-aware version of "SvPOK_only", a macro which turns off the IOK
390       and NOK flags and turns on POK. The final "SvTAINT" is a macro which
391       launders tainted data if taint mode is turned on.
392
393       AVs and HVs are more complicated, but SVs are by far the most common
394       variable type being thrown around. Having seen something of how we
395       manipulate these, let's go on and look at how the op tree is
396       constructed.
397

OP TREES

399       First, what is the op tree, anyway? The op tree is the parsed
400       representation of your program, as we saw in our section on parsing,
401       and it's the sequence of operations that Perl goes through to execute
402       your program, as we saw in "Running".
403
404       An op is a fundamental operation that Perl can perform: all the built-
405       in functions and operators are ops, and there are a series of ops which
406       deal with concepts the interpreter needs internally - entering and
407       leaving a block, ending a statement, fetching a variable, and so on.
408
409       The op tree is connected in two ways: you can imagine that there are
410       two "routes" through it, two orders in which you can traverse the tree.
411       First, parse order reflects how the parser understood the code, and
412       secondly, execution order tells perl what order to perform the
413       operations in.
414
415       The easiest way to examine the op tree is to stop Perl after it has
416       finished parsing, and get it to dump out the tree. This is exactly what
417       the compiler backends B::Terse, B::Concise and B::Debug do.
418
419       Let's have a look at how Perl sees "$a = $b + $c":
420
421            % perl -MO=Terse -e '$a=$b+$c'
422            1  LISTOP (0x8179888) leave
423            2      OP (0x81798b0) enter
424            3      COP (0x8179850) nextstate
425            4      BINOP (0x8179828) sassign
426            5          BINOP (0x8179800) add [1]
427            6              UNOP (0x81796e0) null [15]
428            7                  SVOP (0x80fafe0) gvsv  GV (0x80fa4cc) *b
429            8              UNOP (0x81797e0) null [15]
430            9                  SVOP (0x8179700) gvsv  GV (0x80efeb0) *c
431           10          UNOP (0x816b4f0) null [15]
432           11              SVOP (0x816dcf0) gvsv  GV (0x80fa460) *a
433
434       Let's start in the middle, at line 4. This is a BINOP, a binary
435       operator, which is at location 0x8179828. The specific operator in
436       question is "sassign" - scalar assignment - and you can find the code
437       which implements it in the function "pp_sassign" in pp_hot.c. As a
438       binary operator, it has two children: the add operator, providing the
439       result of "$b+$c", is uppermost on line 5, and the left hand side is on
440       line 10.
441
442       Line 10 is the null op: this does exactly nothing. What is that doing
443       there? If you see the null op, it's a sign that something has been
444       optimized away after parsing. As we mentioned in "Optimization", the
445       optimization stage sometimes converts two operations into one, for
446       example when fetching a scalar variable. When this happens, instead of
447       rewriting the op tree and cleaning up the dangling pointers, it's
448       easier just to replace the redundant operation with the null op.
449       Originally, the tree would have looked like this:
450
451           10          SVOP (0x816b4f0) rv2sv [15]
452           11              SVOP (0x816dcf0) gv  GV (0x80fa460) *a
453
454       That is, fetch the "a" entry from the main symbol table, and then look
455       at the scalar component of it: "gvsv" ("pp_gvsv" in pp_hot.c) happens
456       to do both these things.
457
458       The right hand side, starting at line 5 is similar to what we've just
459       seen: we have the "add" op ("pp_add", also in pp_hot.c) add together
460       two "gvsv"s.
461
462       Now, what's this about?
463
464            1  LISTOP (0x8179888) leave
465            2      OP (0x81798b0) enter
466            3      COP (0x8179850) nextstate
467
468       "enter" and "leave" are scoping ops, and their job is to perform any
469       housekeeping every time you enter and leave a block: lexical variables
470       are tidied up, unreferenced variables are destroyed, and so on. Every
471       program will have those first three lines: "leave" is a list, and its
472       children are all the statements in the block. Statements are delimited
473       by "nextstate", so a block is a collection of "nextstate" ops, with the
474       ops to be performed for each statement being the children of
475       "nextstate". "enter" is a single op which functions as a marker.
476
477       That's how Perl parsed the program, from top to bottom:
478
479                               Program
480                                  |
481                              Statement
482                                  |
483                                  =
484                                 / \
485                                /   \
486                               $a   +
487                                   / \
488                                 $b   $c
489
490       However, it's impossible to perform the operations in this order: you
491       have to find the values of $b and $c before you add them together, for
492       instance. So, the other thread that runs through the op tree is the
493       execution order: each op has a field "op_next" which points to the next
494       op to be run, so following these pointers tells us how perl executes
495       the code. We can traverse the tree in this order using the "exec"
496       option to "B::Terse":
497
498            % perl -MO=Terse,exec -e '$a=$b+$c'
499            1  OP (0x8179928) enter
500            2  COP (0x81798c8) nextstate
501            3  SVOP (0x81796c8) gvsv  GV (0x80fa4d4) *b
502            4  SVOP (0x8179798) gvsv  GV (0x80efeb0) *c
503            5  BINOP (0x8179878) add [1]
504            6  SVOP (0x816dd38) gvsv  GV (0x80fa468) *a
505            7  BINOP (0x81798a0) sassign
506            8  LISTOP (0x8179900) leave
507
508       This probably makes more sense for a human: enter a block, start a
509       statement. Get the values of $b and $c, and add them together.  Find
510       $a, and assign one to the other. Then leave.
511
512       The way Perl builds up these op trees in the parsing process can be
513       unravelled by examining toke.c, the lexer, and perly.y, the YACC
514       grammar. Let's look at the code that constructs the tree for "$a = $b +
515       $c".
516
517       First, we'll look at the "Perl_yylex" function in the lexer. We want to
518       look for "case 'x'", where x is the first character of the operator.
519       (Incidentally, when looking for the code that handles a keyword, you'll
520       want to search for "KEY_foo" where "foo" is the keyword.) Here is the
521       code that handles assignment (there are quite a few operators beginning
522       with "=", so most of it is omitted for brevity):
523
524            1    case '=':
525            2        s++;
526                     ... code that handles == => etc. and pod ...
527            3        pl_yylval.ival = 0;
528            4        OPERATOR(ASSIGNOP);
529
530       We can see on line 4 that our token type is "ASSIGNOP" ("OPERATOR" is a
531       macro, defined in toke.c, that returns the token type, among other
532       things). And "+":
533
534            1     case '+':
535            2         {
536            3             const char tmp = *s++;
537                          ... code for ++ ...
538            4             if (PL_expect == XOPERATOR) {
539                              ...
540            5                 Aop(OP_ADD);
541            6             }
542                          ...
543            7         }
544
545       Line 4 checks what type of token we are expecting. "Aop" returns a
546       token.  If you search for "Aop" elsewhere in toke.c, you will see that
547       it returns an "ADDOP" token.
548
549       Now that we know the two token types we want to look for in the parser,
550       let's take the piece of perly.y we need to construct the tree for "$a =
551       $b + $c"
552
553           1 term    :   term ASSIGNOP term
554           2                { $$ = newASSIGNOP(OPf_STACKED, $1, $2, $3); }
555           3         |   term ADDOP term
556           4                { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
557
558       If you're not used to reading BNF grammars, this is how it works:
559       You're fed certain things by the tokeniser, which generally end up in
560       upper case. "ADDOP" and "ASSIGNOP" are examples of "terminal symbols",
561       because you can't get any simpler than them.
562
563       The grammar, lines one and three of the snippet above, tells you how to
564       build up more complex forms. These complex forms, "non-terminal
565       symbols" are generally placed in lower case. "term" here is a non-
566       terminal symbol, representing a single expression.
567
568       The grammar gives you the following rule: you can make the thing on the
569       left of the colon if you see all the things on the right in sequence.
570       This is called a "reduction", and the aim of parsing is to completely
571       reduce the input. There are several different ways you can perform a
572       reduction, separated by vertical bars: so, "term" followed by "="
573       followed by "term" makes a "term", and "term" followed by "+" followed
574       by "term" can also make a "term".
575
576       So, if you see two terms with an "=" or "+", between them, you can turn
577       them into a single expression. When you do this, you execute the code
578       in the block on the next line: if you see "=", you'll do the code in
579       line 2. If you see "+", you'll do the code in line 4. It's this code
580       which contributes to the op tree.
581
582                   |   term ADDOP term
583                   { $$ = newBINOP($2, 0, scalar($1), scalar($3)); }
584
585       What this does is creates a new binary op, and feeds it a number of
586       variables. The variables refer to the tokens: $1 is the first token in
587       the input, $2 the second, and so on - think regular expression
588       backreferences. $$ is the op returned from this reduction. So, we call
589       "newBINOP" to create a new binary operator. The first parameter to
590       "newBINOP", a function in op.c, is the op type. It's an addition
591       operator, so we want the type to be "ADDOP". We could specify this
592       directly, but it's right there as the second token in the input, so we
593       use $2. The second parameter is the op's flags: 0 means "nothing
594       special". Then the things to add: the left and right hand side of our
595       expression, in scalar context.
596
597       The functions that create ops, which have names like "newUNOP" and
598       "newBINOP", call a "check" function associated with each op type,
599       before returning the op. The check functions can mangle the op as they
600       see fit, and even replace it with an entirely new one. These functions
601       are defined in op.c, and have a "Perl_ck_" prefix. You can find out
602       which check function is used for a particular op type by looking in
603       regen/opcodes.  Take "OP_ADD", for example. ("OP_ADD" is the token
604       value from the "Aop(OP_ADD)" in toke.c which the parser passes to
605       "newBINOP" as its first argument.) Here is the relevant line:
606
607           add             addition (+)            ck_null         IfsT2   S S
608
609       The check function in this case is "Perl_ck_null", which does nothing.
610       Let's look at a more interesting case:
611
612           readline        <HANDLE>                ck_readline     t%      F?
613
614       And here is the function from op.c:
615
616            1 OP *
617            2 Perl_ck_readline(pTHX_ OP *o)
618            3 {
619            4     PERL_ARGS_ASSERT_CK_READLINE;
620            5
621            6     if (o->op_flags & OPf_KIDS) {
622            7          OP *kid = cLISTOPo->op_first;
623            8          if (kid->op_type == OP_RV2GV)
624            9              kid->op_private |= OPpALLOW_FAKE;
625           10     }
626           11     else {
627           12         OP * const newop
628           13             = newUNOP(OP_READLINE, 0, newGVOP(OP_GV, 0,
629           14                                               PL_argvgv));
630           15         op_free(o);
631           16         return newop;
632           17     }
633           18     return o;
634           19 }
635
636       One particularly interesting aspect is that if the op has no kids
637       (i.e., "readline()" or "<>") the op is freed and replaced with an
638       entirely new one that references *ARGV (lines 12-16).
639

STACKS

641       When perl executes something like "addop", how does it pass on its
642       results to the next op? The answer is, through the use of stacks. Perl
643       has a number of stacks to store things it's currently working on, and
644       we'll look at the three most important ones here.
645
646   Argument stack
647       Arguments are passed to PP code and returned from PP code using the
648       argument stack, "ST". The typical way to handle arguments is to pop
649       them off the stack, deal with them how you wish, and then push the
650       result back onto the stack. This is how, for instance, the cosine
651       operator works:
652
653             NV value;
654             value = POPn;
655             value = Perl_cos(value);
656             XPUSHn(value);
657
658       We'll see a more tricky example of this when we consider Perl's macros
659       below. "POPn" gives you the NV (floating point value) of the top SV on
660       the stack: the $x in "cos($x)". Then we compute the cosine, and push
661       the result back as an NV. The "X" in "XPUSHn" means that the stack
662       should be extended if necessary - it can't be necessary here, because
663       we know there's room for one more item on the stack, since we've just
664       removed one! The "XPUSH*" macros at least guarantee safety.
665
666       Alternatively, you can fiddle with the stack directly: "SP" gives you
667       the first element in your portion of the stack, and "TOP*" gives you
668       the top SV/IV/NV/etc. on the stack. So, for instance, to do unary
669       negation of an integer:
670
671            SETi(-TOPi);
672
673       Just set the integer value of the top stack entry to its negation.
674
675       Argument stack manipulation in the core is exactly the same as it is in
676       XSUBs - see perlxstut, perlxs and perlguts for a longer description of
677       the macros used in stack manipulation.
678
679   Mark stack
680       I say "your portion of the stack" above because PP code doesn't
681       necessarily get the whole stack to itself: if your function calls
682       another function, you'll only want to expose the arguments aimed for
683       the called function, and not (necessarily) let it get at your own data.
684       The way we do this is to have a "virtual" bottom-of-stack, exposed to
685       each function. The mark stack keeps bookmarks to locations in the
686       argument stack usable by each function. For instance, when dealing with
687       a tied variable, (internally, something with "P" magic) Perl has to
688       call methods for accesses to the tied variables. However, we need to
689       separate the arguments exposed to the method to the argument exposed to
690       the original function - the store or fetch or whatever it may be.
691       Here's roughly how the tied "push" is implemented; see "av_push" in
692       av.c:
693
694            1  PUSHMARK(SP);
695            2  EXTEND(SP,2);
696            3  PUSHs(SvTIED_obj((SV*)av, mg));
697            4  PUSHs(val);
698            5  PUTBACK;
699            6  ENTER;
700            7  call_method("PUSH", G_SCALAR|G_DISCARD);
701            8  LEAVE;
702
703       Let's examine the whole implementation, for practice:
704
705            1  PUSHMARK(SP);
706
707       Push the current state of the stack pointer onto the mark stack. This
708       is so that when we've finished adding items to the argument stack, Perl
709       knows how many things we've added recently.
710
711            2  EXTEND(SP,2);
712            3  PUSHs(SvTIED_obj((SV*)av, mg));
713            4  PUSHs(val);
714
715       We're going to add two more items onto the argument stack: when you
716       have a tied array, the "PUSH" subroutine receives the object and the
717       value to be pushed, and that's exactly what we have here - the tied
718       object, retrieved with "SvTIED_obj", and the value, the SV "val".
719
720            5  PUTBACK;
721
722       Next we tell Perl to update the global stack pointer from our internal
723       variable: "dSP" only gave us a local copy, not a reference to the
724       global.
725
726            6  ENTER;
727            7  call_method("PUSH", G_SCALAR|G_DISCARD);
728            8  LEAVE;
729
730       "ENTER" and "LEAVE" localise a block of code - they make sure that all
731       variables are tidied up, everything that has been localised gets its
732       previous value returned, and so on. Think of them as the "{" and "}" of
733       a Perl block.
734
735       To actually do the magic method call, we have to call a subroutine in
736       Perl space: "call_method" takes care of that, and it's described in
737       perlcall. We call the "PUSH" method in scalar context, and we're going
738       to discard its return value. The call_method() function removes the top
739       element of the mark stack, so there is nothing for the caller to clean
740       up.
741
742   Save stack
743       C doesn't have a concept of local scope, so perl provides one. We've
744       seen that "ENTER" and "LEAVE" are used as scoping braces; the save
745       stack implements the C equivalent of, for example:
746
747           {
748               local $foo = 42;
749               ...
750           }
751
752       See "Localizing changes" in perlguts for how to use the save stack.
753

MILLIONS OF MACROS

755       One thing you'll notice about the Perl source is that it's full of
756       macros. Some have called the pervasive use of macros the hardest thing
757       to understand, others find it adds to clarity. Let's take an example,
758       the code which implements the addition operator:
759
760          1  PP(pp_add)
761          2  {
762          3      dSP; dATARGET; tryAMAGICbin(add,opASSIGN);
763          4      {
764          5        dPOPTOPnnrl_ul;
765          6        SETn( left + right );
766          7        RETURN;
767          8      }
768          9  }
769
770       Every line here (apart from the braces, of course) contains a macro.
771       The first line sets up the function declaration as Perl expects for PP
772       code; line 3 sets up variable declarations for the argument stack and
773       the target, the return value of the operation. Finally, it tries to see
774       if the addition operation is overloaded; if so, the appropriate
775       subroutine is called.
776
777       Line 5 is another variable declaration - all variable declarations
778       start with "d" - which pops from the top of the argument stack two NVs
779       (hence "nn") and puts them into the variables "right" and "left", hence
780       the "rl". These are the two operands to the addition operator.  Next,
781       we call "SETn" to set the NV of the return value to the result of
782       adding the two values. This done, we return - the "RETURN" macro makes
783       sure that our return value is properly handled, and we pass the next
784       operator to run back to the main run loop.
785
786       Most of these macros are explained in perlapi, and some of the more
787       important ones are explained in perlxs as well. Pay special attention
788       to "Background and PERL_IMPLICIT_CONTEXT" in perlguts for information
789       on the "[pad]THX_?" macros.
790

FURTHER READING

792       For more information on the Perl internals, please see the documents
793       listed at "Internals and C Language Interface" in perl.
794
795
796
797perl v5.28.2                      2018-11-01                     PERLINTERP(1)
Impressum