in reply to Graphing SQLite's VDBE
I really like your conversion from the stack-based code to the graphical format. One suggestion though: You don't show the stack-based code for the graph shown, so it's not as easy as one would like to see how they tie together.
As far as code pointers go, I'll leave that to monks better-versed in Perl than I.
Anyway, on to your other question: Assuming that by "conventional code" you mean a more algebraic form, then here's my take on it:
The most trivial form is to build it by parenthesizing every expression as you encounter it. Suppose, for example, you have the following bit of code:
We'd build an algebraic expression with something like this:[1] push 3 [2] push 5 [3] add [4] push 7 [5] push 9 [6] add [7] mul [8] print
Which gives us the output:#!/usr/bin/perl -w use strict; use warnings; my @stack = (); while (<DATA>) { chomp; print "TOS='" . (@stack ? $stack[$#stack] : '-nil-') . "', " . "stmt = '" . $_ . "'\n"; my ($operator, $operand) = split; if ($operator eq 'push') { push @stack, $operand; } elsif ($operator eq 'print') { print "out: '" . (pop @stack) . "'\n"; } elsif ($operator eq 'add') { my $lhs = pop @stack; my $rhs = pop @stack; push @stack, '(' . $lhs . ' + ' . $rhs . ')'; } elsif ($operator eq 'mul') { my $lhs = pop @stack; my $rhs = pop @stack; push @stack, '(' . $lhs . '*' . $rhs . ') '; } } __DATA__ push 3 push 5 add push 7 push 9 add mul print
Now this trivial technique will do it correctly, but will give you too many parenthesis. With a bit more work, you can get rid of the extra parenthesis to get a minimal expression. Here's how to do it: Instead of storing a single string on the stack, keep a pair: The string and the precedence of the operator. Now, when you're working on an operator, check the precedence of the items you pop from the stack with the precedence of the operator you're processing now. If any operator has a lower precedence, wrap it in parenthesis.root@swill ~/PerlMonks $ ./stack_to_infix.pl TOS='-nil-', stmt = 'push 3' TOS='3', stmt = 'push 5' TOS='5', stmt = 'add' TOS='(5 + 3)', stmt = 'push 7' TOS='7', stmt = 'push 9' TOS='9', stmt = 'add' TOS='(9 + 7)', stmt = 'mul' TOS='((9 + 7)*(5 + 3)) ', stmt = 'print' out: '((9 + 7)*(5 + 3)) ' root@swill ~/PerlMonks $
--roboticus
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Convert stack-based code to "conventional" (was Re: Graphing SQLite's VDBE)
by roboticus (Chancellor) on Jan 24, 2007 at 13:01 UTC | |
by johngg (Canon) on Jan 24, 2007 at 15:35 UTC | |
by roboticus (Chancellor) on Jan 25, 2007 at 03:24 UTC | |
|
Re: Convert stack-based code to "conventional" (was Re: Graphing SQLite's VDBE)
by bsb (Priest) on Jan 25, 2007 at 07:11 UTC |