Searched refs:lastop (Results 1 - 11 of 11) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
H A D | Bblock.pm | 44 my ($op, $lastop, $leader, $bb); 50 $lastop = $leader; 54 $lastop = $op; 57 push(@bblock_ends, [$leader, $lastop]); 60 ($leader, $lastop) = @$bb; 61 printf "%s .. %s\n", peekop($leader), peekop($lastop); 62 for ($op = $leader; $$op != $$lastop; $op = $op->next) { 65 printf " %s\n", peekop($lastop); 89 mark_leader($op->lastop->next); 161 # The ops pointed at by nextop, redoop and lastop [all...] |
H A D | CC.pm | 1362 my $lastop = $op->lastop; 1371 lastop => $lastop, 1375 $lastop->save; 1463 my $lastop = $cxstack[$cxix]->{lastop}->next; 1464 push(@bblock_todo, $lastop); 1465 save_or_restore_lexical_state($$lastop); 1466 runtime(sprintf("goto %s;", label($lastop))); [all...] |
H A D | Concise.pm | 371 $labels{$op->lastop->seq} = "LAST"; 402 my $lastop = $op->lastop; 403 $lastop = $lastop->next while $lastop->name eq "null"; 404 sequence($lastop); 634 $h{arg} = "(next->" . seq($op->nextop) . " last->" . seq($op->lastop)
|
H A D | Debug.pm | 42 printf <<'EOT', ${$op->redoop}, ${$op->nextop}, ${$op->lastop};
|
H A D | Xref.pm | 186 xref($op->lastop);
|
H A D | Bytecode.pm | 604 my $lastix = $op->lastop->ix;
|
H A D | C.pm | 442 #warn sprintf("LOOP: redoop %s, nextop %s, lastop %s\n", 444 # peekop($op->lastop)); # debug 450 ${$op->lastop}));
|
/osnet-11/usr/src/lib/libpp/common/ |
H A D | ppop.c | 363 if (pp.lastop) 364 pp.lastop = (pp.lastop->next = newof(0, struct oplist, 1, 0)); 366 pp.firstop = pp.lastop = newof(0, struct oplist, 1, 0); 367 pp.lastop->op = op; 368 pp.lastop->value = p; 881 pp.lastop = pp.firstop; 883 free(pp.lastop);
|
H A D | pplib.h | 270 struct oplist* lastop; /* last arg op */ \
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/ |
H A D | B.pm | 203 walkoptree_exec($op->lastop, $method, $level + 1); 1047 =item lastop
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | op.c | 2760 OP *lastop = 0; local 2783 if (lastop && lastop->op_type != OP_GV) /*funny deref?*/ 2797 lastop = curop; 3238 OP *lastop = o; local 3266 if (lastop->op_type != OP_GV) /* funny deref? */ 3285 lastop = curop;
|
Completed in 50 milliseconds